aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-12-19 16:18:45 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-12-23 22:15:11 -0800
commit6cfd2df695df04834b935c21b1b40ddac0d39594 (patch)
treed9d8702361e07fa3bc44fc6ca26fb42a06bcaba3 /lib/std
parentbf81666beb7ef2678d0d35676318d784385eb5e1 (diff)
downloadzig-6cfd2df695df04834b935c21b1b40ddac0d39594.tar.gz
zig-6cfd2df695df04834b935c21b1b40ddac0d39594.zip
don't skip test for closed issue
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/fs/test.zig5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig
index 704805efb9..91efb9ae55 100644
--- 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(.{});