authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-05-29 16:29:19-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-05-29 16:29:19-07:00
log706bdf6512aec9f5d003cc2ec64ba16ac0a202dc
treef6aeadd1e429502488cccddaa5d893601cfc98d2
parent82632aff2c3ea8d05ecc2bb956ed0aaa7f59fa2f

std.debug: disable sporadically failing test

This was observed to fail on aarch64-windows as well. See tracking issue #13963

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

lib/std/debug.zig+1-1
......@@ -2070,7 +2070,7 @@ pub fn dumpStackPointerAddr(prefix: []const u8) void {
20702070test "manage resources correctly" {
20712071 if (builtin.os.tag == .wasi) return error.SkipZigTest;
20722072
2073 if (builtin.os.tag == .windows and builtin.cpu.arch == .x86_64) {
2073 if (builtin.os.tag == .windows) {
20742074 // https://github.com/ziglang/zig/issues/13963
20752075 return error.SkipZigTest;
20762076 }