From 1456f95b3c043aa7e5b655c362cc3bd05aa3c795 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 16 Oct 2023 16:13:46 -0700 Subject: [PATCH] std: disable flaky test on aarch64-windows tracked by #17134 --- lib/std/fs/test.zig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig index 9f55d5378e..56477dce7f 100644 --- a/lib/std/fs/test.zig +++ b/lib/std/fs/test.zig @@ -1431,6 +1431,11 @@ test "walker without fully iterating" { test ". and .. in fs.Dir functions" { if (builtin.os.tag == .wasi and builtin.link_libc) return error.SkipZigTest; + if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) { + // https://github.com/ziglang/zig/issues/17134 + return error.SkipZigTest; + } + try testWithAllSupportedPathTypes(struct { fn impl(ctx: *TestContext) !void { const subdir_path = try ctx.transformPath("./subdir");