zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 4f6fdd67dd8c8710df04ed555ccf4f3c97d2937c (tree)
parent 59d9afcb5cc115fff2cf56475319f4599a670e30
Author: kcbanner <kcbanner@gmail.com>
Date:   Mon, 23 Jan 2023 23:43:24 -0500

debug: re-enable resource management test on x86_64 windows

Diffstat:
Mlib/std/debug.zig | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/lib/std/debug.zig b/lib/std/debug.zig @@ -2060,11 +2060,6 @@ 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) { - // 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();