| author | |
| committer | |
| log | 5d2e9a12443e7f6aae1e9289f15b02f85be4bb32 |
| tree | 5d0775f0bd0978eb9d9dd61e4b3393d0f99c8d45 |
| parent | dae7aeb33779d0214c3efe0960af0059416aed51 |
The meaning of this "skip_stage2" flag was intended to mean the
self-hosted backends, not the stage2 frontend. Sorry for the confusion.
closes #125411 files changed, 2 insertions(+), 1 deletions(-)
test/tests.zig+2-1| ... | ... | @@ -632,8 +632,9 @@ pub fn addPkgTests( |
| 632 | 632 | |
| 633 | 633 | if (test_target.backend) |backend| switch (backend) { |
| 634 | 634 | .stage1 => if (skip_stage1) continue, |
| 635 | .stage2_llvm => {}, | |
| 635 | 636 | else => if (skip_stage2) continue, |
| 636 | } else if (skip_stage2) continue; | |
| 637 | }; | |
| 637 | 638 | |
| 638 | 639 | const want_this_mode = for (modes) |m| { |
| 639 | 640 | if (m == test_target.mode) break true; |