authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-10-16 16:13:46-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-10-16 16:13:46-07:00
log1456f95b3c043aa7e5b655c362cc3bd05aa3c795
tree015b95b8173cd445f153ce836185432c3221985f
parent78f2ae7f29ff537e63227d7e88e555178fed2a34

std: disable flaky test on aarch64-windows

tracked by #17134

1 files changed, 5 insertions(+), 0 deletions(-)

lib/std/fs/test.zig+5
......@@ -1431,6 +1431,11 @@ test "walker without fully iterating" {
14311431test ". and .. in fs.Dir functions" {
14321432 if (builtin.os.tag == .wasi and builtin.link_libc) return error.SkipZigTest;
14331433
1434 if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
1435 // https://github.com/ziglang/zig/issues/17134
1436 return error.SkipZigTest;
1437 }
1438
14341439 try testWithAllSupportedPathTypes(struct {
14351440 fn impl(ctx: *TestContext) !void {
14361441 const subdir_path = try ctx.transformPath("./subdir");