authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-08-11 12:56:46-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-08-11 12:56:46-07:00
logdba758da18a706efbdbeb1e1bbbabdfe49e1931d
treedc7acf0159b6419f16cf6e2fbf9cf77f35710139
parent64307c28211a7d402bd7f4363dff5b65ab79bd34

disable failing C backend behavior test on Windows

See tracking issue #12415

1 files changed, 7 insertions(+), 0 deletions(-)

test/tests.zig+7
...@@ -641,6 +641,13 @@ pub fn addPkgTests(...@@ -641,6 +641,13 @@ pub fn addPkgTests(
641 } else false;641 } else false;
642 if (!want_this_mode) continue;642 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
644 const libc_prefix = if (test_target.target.getOs().requiresLibC())651 const libc_prefix = if (test_target.target.getOs().requiresLibC())
645 ""652 ""
646 else if (test_target.link_libc)653 else if (test_target.link_libc)