Commit 706bdf6512

Andrew Kelley <andrew@ziglang.org>
2023-05-30 01:29:19
std.debug: disable sporadically failing test
This was observed to fail on aarch64-windows as well. See tracking issue #13963
1 parent 82632af
Changed files (1)
lib
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;
     }