Skip to content

Commit dba758d

Browse files
committed
disable failing C backend behavior test on Windows
See tracking issue #12415
1 parent 64307c2 commit dba758d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/tests.zig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,13 @@ pub fn addPkgTests(
641641
} else false;
642642
if (!want_this_mode) continue;
643643

644+
if (test_target.backend) |backend| {
645+
if (backend == .stage2_c and builtin.os.tag == .windows) {
646+
// https://github.com/ziglang/zig/issues/12415
647+
continue;
648+
}
649+
}
650+
644651
const libc_prefix = if (test_target.target.getOs().requiresLibC())
645652
""
646653
else if (test_target.link_libc)

0 commit comments

Comments
 (0)