Skip to content

Commit 54c9f79

Browse files
authored
Rollup merge of rust-lang#63949 - JohnTitor:fix-quick-build, r=Mark-Simulacrum
Fix build src/libtest Fixes rust-lang#63928 r? @Mark-Simulacrum
2 parents fe8e7ad + 661141f commit 54c9f79

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/bootstrap/check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl Step for Std {
3434
const DEFAULT: bool = true;
3535

3636
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
37-
run.all_krates("std")
37+
run.all_krates("test")
3838
}
3939

4040
fn make_run(run: RunConfig<'_>) {

src/bootstrap/compile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl Step for Std {
3939
const DEFAULT: bool = true;
4040

4141
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
42-
run.all_krates("std")
42+
run.all_krates("test")
4343
}
4444

4545
fn make_run(run: RunConfig<'_>) {

src/bootstrap/doc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ impl Step for Std {
413413

414414
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
415415
let builder = run.builder;
416-
run.all_krates("std").default_condition(builder.config.docs)
416+
run.all_krates("test").default_condition(builder.config.docs)
417417
}
418418

419419
fn make_run(run: RunConfig<'_>) {

0 commit comments

Comments
 (0)