We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1704971 commit 0d92fcfCopy full SHA for 0d92fcf
lib/std/debug.zig
@@ -2008,9 +2008,14 @@ pub fn dumpStackPointerAddr(prefix: []const u8) void {
2008
std.debug.print("{} sp = 0x{x}\n", .{ prefix, sp });
2009
}
2010
2011
-test "#4353: std.debug should manage resources correctly" {
+test "manage resources correctly" {
2012
if (builtin.os.tag == .wasi) return error.SkipZigTest;
2013
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
+
2019
const writer = std.io.null_writer;
2020
var di = try openSelfDebugInfo(testing.allocator);
2021
defer di.deinit();
0 commit comments