std: disable flaky test on aarch64-windows

tracked by #17134
This commit is contained in:
Andrew Kelley 2023-10-16 16:13:46 -07:00
parent 78f2ae7f29
commit 1456f95b3c

View File

@ -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");