| ... | @@ -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; |
| 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 | 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) |