Skip to content

Commit ec7c01e

Browse files
committed
increase default stage from 1 to 2 for x test
This is because we no longer compile additional stage for rustc tools. Signed-off-by: onur-ozkan <[email protected]>
1 parent 26d6ce7 commit ec7c01e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/config/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2334,7 +2334,7 @@ impl Config {
23342334
flags.stage.or(build_stage).unwrap_or(if download_rustc { 2 } else { 1 })
23352335
}
23362336
Subcommand::Test { .. } | Subcommand::Miri { .. } => {
2337-
flags.stage.or(test_stage).unwrap_or(if download_rustc { 2 } else { 1 })
2337+
flags.stage.or(test_stage).unwrap_or(2)
23382338
}
23392339
Subcommand::Bench { .. } => flags.stage.or(bench_stage).unwrap_or(2),
23402340
Subcommand::Dist { .. } => flags.stage.or(dist_stage).unwrap_or(2),

0 commit comments

Comments
 (0)