Skip to content

Commit 6628c4b

Browse files
committed
bootstrap: support ./x check run-make-support
1 parent 870c13d commit 6628c4b

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
@@ -909,6 +909,7 @@ impl<'a> Builder<'a> {
909909
check::RustAnalyzer,
910910
check::TestFloatParse,
911911
check::Bootstrap,
912+
check::RunMakeSupport,
912913
check::Compiletest,
913914
),
914915
Kind::Test => describe!(

0 commit comments

Comments
 (0)