Skip to content

Commit f8b8259

Browse files
committed
behavior: skip newly failing test
This test has regressed due to a bug in the self-hosted COFF linker. Jakub recommended disabling it for now, since the COFF linker is being effectively rewritten, so there is little point in fixing the bug now.
1 parent 9c3670f commit f8b8259

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/behavior/extern.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const expect = std.testing.expect;
55
test "anyopaque extern symbol" {
66
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
77
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
8+
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
89
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
910

1011
const a = @extern(*anyopaque, .{ .name = "a_mystery_symbol" });

0 commit comments

Comments
 (0)