We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--keep-stage-std
1 parent b6ea60f commit 1043209Copy full SHA for 1043209
src/bootstrap/src/core/build_steps/test.rs
@@ -1551,7 +1551,9 @@ impl Step for MirOpt {
1551
1552
run(self.target);
1553
1554
- if builder.config.cmd.bless() {
+ // Run more targets on `--bless`, to try and cover all the tests. Don't try if we're keeping
1555
+ // an std as that only makes sense for the current target.
1556
+ if builder.config.cmd.bless() && builder.config.keep_stage_std.is_empty() {
1557
// All that we really need to do is cover all combinations of 32/64-bit and unwind/abort,
1558
// but while we're at it we might as well flex our cross-compilation support. This
1559
// selection covers all our tier 1 operating systems and architectures using only tier
0 commit comments