| author | |
| committer | |
| log | dba758da18a706efbdbeb1e1bbbabdfe49e1931d |
| tree | dc7acf0159b6419f16cf6e2fbf9cf77f35710139 |
| parent | 64307c28211a7d402bd7f4363dff5b65ab79bd34 |
See tracking issue #124151 files changed, 7 insertions(+), 0 deletions(-)
test/tests.zig+7| ... | ... | @@ -641,6 +641,13 @@ pub fn addPkgTests( |
| 641 | 641 | } else false; |
| 642 | 642 | if (!want_this_mode) continue; |
| 643 | 643 | |
| 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 | 651 | const libc_prefix = if (test_target.target.getOs().requiresLibC()) |
| 645 | 652 | "" |
| 646 | 653 | else if (test_target.link_libc) |