zig

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

commit d080622cc3f5db1ae3cd628c21c1ffaeb2b899d5 (tree)
parent 7c0e1cc91398b77d29a2b5760f003a52dd828997
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Fri, 19 Apr 2024 19:01:13 -0700

disable flaky std.fs test

Tracked by #17134

Diffstat:
Mlib/std/fs/test.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig @@ -1712,7 +1712,7 @@ test "walker without fully iterating" { test "'.' and '..' in fs.Dir functions" { if (native_os == .wasi and builtin.link_libc) return error.SkipZigTest; - if (native_os == .windows and builtin.cpu.arch == .aarch64) { + if (native_os == .windows) { // https://github.com/ziglang/zig/issues/17134 return error.SkipZigTest; }