diff options
| -rw-r--r-- | test/src/Cases.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/src/Cases.zig b/test/src/Cases.zig index db1a564373..f386bc3d63 100644 --- a/test/src/Cases.zig +++ b/test/src/Cases.zig @@ -472,6 +472,10 @@ fn addFromDirInner( // Rosetta has issues with ZLD continue; } + if (backend == .stage2 and target.ofmt == .coff) { + // COFF linker has bitrotted + continue; + } const next = ctx.cases.items.len; try ctx.cases.append(.{ |
