Skip to content

Commit

Permalink
behavior: skip newly failing test
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mlugg committed Mar 25, 2024
1 parent 9c3670f commit f8b8259
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/behavior/extern.zig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const expect = std.testing.expect;
test "anyopaque extern symbol" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;

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

0 comments on commit f8b8259

Please sign in to comment.