commit f40eb5015700e3556330020130a18da46aaec9b5 (tree) parent 36b28050f4e6c00424e835d54d965670b5cfeff0 Author: Alex Rønne Petersen <alex@alexrp.com> Date: Fri, 27 Mar 2026 02:22:25 +0100 std.fs.test: disable `'.' and '..' in Dir functions` test on *-windows https://codeberg.org/ziglang/zig/issues/31561 Diffstat:
| M | lib/std/fs/test.zig | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig @@ -2043,8 +2043,8 @@ test "walker without fully iterating" { } test "'.' and '..' in Dir functions" { - if (native_os == .windows and builtin.cpu.arch == .aarch64) { - // https://github.com/ziglang/zig/issues/17134 + if (native_os == .windows) { + // https://codeberg.org/ziglang/zig/issues/31561 return error.SkipZigTest; }