We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4282576 commit 047e17dCopy full SHA for 047e17d
src/bootstrap/src/core/build_steps/test.rs
@@ -1549,7 +1549,7 @@ impl Step for MirOpt {
1549
})
1550
};
1551
1552
- if builder.config.cmd.bless() {
+ if builder.config.keep_stage_std.is_empty() {
1553
// All that we really need to do is cover all combinations of 32/64-bit and unwind/abort,
1554
// but while we're at it we might as well flex our cross-compilation support. This
1555
// selection covers all our tier 1 operating systems and architectures using only tier
@@ -1568,6 +1568,7 @@ impl Step for MirOpt {
1568
run(panic_abort_target);
1569
}
1570
} else {
1571
+ // If we're keeping a std stage, only run tests for this target.
1572
run(self.target);
1573
1574
0 commit comments