commit bcc2fb66f377745747b2394a01ec0bb3acee9341 (tree) parent d6faa4e86893e5c64130deab0fa858abbc41fbf5 Author: Andrew Kelley <andrew@ziglang.org> Date: Thu, 15 Dec 2022 15:56:13 -0700 std.debug: disable sporadically failing test see tracking issue #13963 Diffstat:
| M | lib/std/debug.zig | | | 7 | ++++++- |
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/lib/std/debug.zig b/lib/std/debug.zig @@ -2029,9 +2029,14 @@ pub fn dumpStackPointerAddr(prefix: []const u8) void { std.debug.print("{} sp = 0x{x}\n", .{ prefix, sp }); } -test "#4353: std.debug should manage resources correctly" { +test "manage resources correctly" { if (builtin.os.tag == .wasi) return error.SkipZigTest; + if (builtin.os.tag == .windows and builtin.cpu.arch == .x86_64) { + // https://github.com/ziglang/zig/issues/13963 + return error.SkipZigTest; + } + const writer = std.io.null_writer; var di = try openSelfDebugInfo(testing.allocator); defer di.deinit();