| ... | ... | @@ -54,6 +54,7 @@ pub fn build(b: *Builder) !void { |
| 54 | 54 | const skip_release_safe = b.option(bool, "skip-release-safe", "Main test suite skips release-safe builds") orelse skip_release; |
| 55 | 55 | const skip_non_native = b.option(bool, "skip-non-native", "Main test suite skips non-native builds") orelse false; |
| 56 | 56 | const skip_libc = b.option(bool, "skip-libc", "Main test suite skips tests that link libc") orelse false; |
| 57 | const skip_single_threaded = b.option(bool, "skip-single-threaded", "Main test suite skips tests that are single-threaded") orelse false; |
| 57 | 58 | const skip_stage1 = b.option(bool, "skip-stage1", "Main test suite skips stage1 compile error tests") orelse false; |
| 58 | 59 | const skip_run_translated_c = b.option(bool, "skip-run-translated-c", "Main test suite skips run-translated-c tests") orelse false; |
| 59 | 60 | const skip_stage2_tests = b.option(bool, "skip-stage2-tests", "Main test suite skips self-hosted compiler tests") orelse false; |
| ... | ... | @@ -444,7 +445,7 @@ pub fn build(b: *Builder) !void { |
| 444 | 445 | "behavior", |
| 445 | 446 | "Run the behavior tests", |
| 446 | 447 | modes, |
| 447 | | false, // skip_single_threaded |
| 448 | skip_single_threaded, |
| 448 | 449 | skip_non_native, |
| 449 | 450 | skip_libc, |
| 450 | 451 | skip_stage1, |
| ... | ... | @@ -501,7 +502,7 @@ pub fn build(b: *Builder) !void { |
| 501 | 502 | "std", |
| 502 | 503 | "Run the standard library tests", |
| 503 | 504 | modes, |
| 504 | | false, |
| 505 | skip_single_threaded, |
| 505 | 506 | skip_non_native, |
| 506 | 507 | skip_libc, |
| 507 | 508 | skip_stage1, |