Skip to content

Commit 486626b

Browse files
committed
disable failing link tests on windows
See tracking issue #12421
1 parent 23a227a commit 486626b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/link.zig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ const builtin = @import("builtin");
33
const tests = @import("tests.zig");
44

55
pub fn addCases(cases: *tests.StandaloneContext) void {
6+
if (builtin.os.tag == .windows) {
7+
// https://github.com/ziglang/zig/issues/12421
8+
return;
9+
}
10+
611
cases.addBuildFile("test/link/bss/build.zig", .{
712
.build_modes = false, // we only guarantee zerofill for undefined in Debug
813
});

0 commit comments

Comments
 (0)