mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
parent
1704971666
commit
0d92fcf6a5
@ -2008,9 +2008,14 @@ pub fn dumpStackPointerAddr(prefix: []const u8) void {
|
|||||||
std.debug.print("{} sp = 0x{x}\n", .{ prefix, sp });
|
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 == .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;
|
const writer = std.io.null_writer;
|
||||||
var di = try openSelfDebugInfo(testing.allocator);
|
var di = try openSelfDebugInfo(testing.allocator);
|
||||||
defer di.deinit();
|
defer di.deinit();
|
||||||
|
Loading…
Reference in New Issue
Block a user