mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-09 15:19:07 +00:00
disable failing C backend behavior test on Windows
See tracking issue #12415
This commit is contained in:
parent
64307c2821
commit
dba758da18
1 changed files with 7 additions and 0 deletions
|
|
@ -641,6 +641,13 @@ pub fn addPkgTests(
|
||||||
} else false;
|
} else false;
|
||||||
if (!want_this_mode) continue;
|
if (!want_this_mode) continue;
|
||||||
|
|
||||||
|
if (test_target.backend) |backend| {
|
||||||
|
if (backend == .stage2_c and builtin.os.tag == .windows) {
|
||||||
|
// https://github.com/ziglang/zig/issues/12415
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const libc_prefix = if (test_target.target.getOs().requiresLibC())
|
const libc_prefix = if (test_target.target.getOs().requiresLibC())
|
||||||
""
|
""
|
||||||
else if (test_target.link_libc)
|
else if (test_target.link_libc)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue