zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 6cfd2df695df04834b935c21b1b40ddac0d39594 (tree)
parent bf81666beb7ef2678d0d35676318d784385eb5e1
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Fri, 19 Dec 2025 16:18:45 -0800

don't skip test for closed issue

Diffstat:
Mlib/std/fs/test.zig | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig @@ -2364,11 +2364,6 @@ test "readlinkat" { test "fchmodat smoke test" { if (!Io.File.Permissions.has_executable_bit) return error.SkipZigTest; - if (builtin.cpu.arch.isMIPS64() and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) { - // https://github.com/ziglang/zig/issues/23808 - return error.SkipZigTest; - } - const io = testing.io; var tmp = tmpDir(.{});