Skip to content

Commit 9f3fe40

Browse files
committed
remove thread option from self-test invocation
1 parent c4a5408 commit 9f3fe40

File tree

1 file changed

+1
-2
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-2
lines changed

src/bootstrap/src/core/build_steps/test.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3294,8 +3294,7 @@ impl Step for Bootstrap {
32943294
.env("INSTA_WORKSPACE_ROOT", &builder.src)
32953295
.env("RUSTC_BOOTSTRAP", "1");
32963296

3297-
let threads = std::thread::available_parallelism().map(|n| n.get()).unwrap_or(1);
3298-
run_cargo_test(cargo, &["--test-threads", &threads.to_string()], &[], None, host, builder);
3297+
run_cargo_test(cargo, &[], &[], None, host, builder);
32993298
}
33003299

33013300
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {

0 commit comments

Comments
 (0)