We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
COMPILETEST_FORCE_STAGE0
./x test rustdoc-js --stage 0
1 parent 99db273 commit 097cb1aCopy full SHA for 097cb1a
src/bootstrap/src/core/build_steps/test.rs
@@ -1638,10 +1638,7 @@ impl Step for Compiletest {
1638
return;
1639
}
1640
1641
- if builder.top_stage == 0
1642
- && env::var("COMPILETEST_FORCE_STAGE0").is_err()
1643
- && self.mode != "js-doc-test"
1644
- {
+ if builder.top_stage == 0 && env::var("COMPILETEST_FORCE_STAGE0").is_err() {
1645
eprintln!("\
1646
ERROR: `--stage 0` runs compiletest on the beta compiler, not your local changes, and will almost always cause tests to fail
1647
HELP: to test the compiler, use `--stage 1` instead
0 commit comments