commit 706bdf6512aec9f5d003cc2ec64ba16ac0a202dc (tree)
parent 82632aff2c3ea8d05ecc2bb956ed0aaa7f59fa2f
Author: Andrew Kelley <andrew@ziglang.org>
Date: Mon, 29 May 2023 16:29:19 -0700
std.debug: disable sporadically failing test
This was observed to fail on aarch64-windows as well.
See tracking issue #13963
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/debug.zig b/lib/std/debug.zig
@@ -2070,7 +2070,7 @@ pub fn dumpStackPointerAddr(prefix: []const u8) void {
test "manage resources correctly" {
if (builtin.os.tag == .wasi) return error.SkipZigTest;
- if (builtin.os.tag == .windows and builtin.cpu.arch == .x86_64) {
+ if (builtin.os.tag == .windows) {
// https://github.com/ziglang/zig/issues/13963
return error.SkipZigTest;
}