Skip to content

Commit 1456f95

Browse files
committed
std: disable flaky test on aarch64-windows
tracked by #17134
1 parent 78f2ae7 commit 1456f95

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/std/fs/test.zig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1431,6 +1431,11 @@ test "walker without fully iterating" {
14311431
test ". 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");

0 commit comments

Comments
 (0)