Skip to content

Commit 0d92fcf

Browse files
committed
std.debug: disable sporadically failing test
see tracking issue #13963
1 parent 1704971 commit 0d92fcf

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/std/debug.zig

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2008,9 +2008,14 @@ pub fn dumpStackPointerAddr(prefix: []const u8) void {
20082008
std.debug.print("{} sp = 0x{x}\n", .{ prefix, sp });
20092009
}
20102010

2011-
test "#4353: std.debug should manage resources correctly" {
2011+
test "manage resources correctly" {
20122012
if (builtin.os.tag == .wasi) return error.SkipZigTest;
20132013

2014+
if (builtin.os.tag == .windows and builtin.cpu.arch == .x86_64) {
2015+
// https://github.com/ziglang/zig/issues/13963
2016+
return error.SkipZigTest;
2017+
}
2018+
20142019
const writer = std.io.null_writer;
20152020
var di = try openSelfDebugInfo(testing.allocator);
20162021
defer di.deinit();

0 commit comments

Comments
 (0)