aboutsummaryrefslogtreecommitdiff
path: root/lib/std/debug.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-05-29 16:29:19 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-05-29 16:29:19 -0700
commit706bdf6512aec9f5d003cc2ec64ba16ac0a202dc (patch)
treef6aeadd1e429502488cccddaa5d893601cfc98d2 /lib/std/debug.zig
parent82632aff2c3ea8d05ecc2bb956ed0aaa7f59fa2f (diff)
downloadzig-706bdf6512aec9f5d003cc2ec64ba16ac0a202dc.tar.gz
zig-706bdf6512aec9f5d003cc2ec64ba16ac0a202dc.zip
std.debug: disable sporadically failing test
This was observed to fail on aarch64-windows as well. See tracking issue #13963
Diffstat (limited to 'lib/std/debug.zig')
-rw-r--r--lib/std/debug.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/debug.zig b/lib/std/debug.zig
index 08407023d6..e0352a26fb 100644
--- 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;
}