Skip to content

Commit e4cc2db

Browse files
authored
Rollup merge of rust-lang#135066 - jieyouxu:check-run-make-support, r=clubby789
bootstrap: support `./x check run-make-support` Mostly for working on `src/tools/run-make-support` locally.
2 parents 966a5be + 6628c4b commit e4cc2db

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/bootstrap/src/core/build_steps/check.rs

+5
Original file line numberDiff line numberDiff line change
@@ -491,6 +491,11 @@ tool_check_step!(MiroptTestTools { path: "src/tools/miropt-test-tools" });
491491
tool_check_step!(TestFloatParse { path: "src/etc/test-float-parse" });
492492

493493
tool_check_step!(Bootstrap { path: "src/bootstrap", default: false });
494+
495+
// `run-make-support` will be built as part of suitable run-make compiletest test steps, but support
496+
// check to make it easier to work on.
497+
tool_check_step!(RunMakeSupport { path: "src/tools/run-make-support", default: false });
498+
494499
// Compiletest is implicitly "checked" when it gets built in order to run tests,
495500
// so this is mainly for people working on compiletest to run locally.
496501
tool_check_step!(Compiletest { path: "src/tools/compiletest", default: false });

src/bootstrap/src/core/builder/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -935,6 +935,7 @@ impl<'a> Builder<'a> {
935935
check::RustAnalyzer,
936936
check::TestFloatParse,
937937
check::Bootstrap,
938+
check::RunMakeSupport,
938939
check::Compiletest,
939940
),
940941
Kind::Test => describe!(

0 commit comments

Comments
 (0)