-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mention
RUSTC_BOOTSTRAP
for misc testing (#2136)
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Miscellaneous testing-related info | ||
|
||
## `RUSTC_BOOTSTRAP` and stability | ||
|
||
<!-- date-check: Nov 2024 --> | ||
|
||
This is a bootstrap/compiler implementation detail, but it can also be useful | ||
for testing: | ||
|
||
- `RUSTC_BOOTSTRAP=1` will "cheat" and bypass usual stability checking, allowing | ||
you to use unstable features and cli flags on a stable `rustc`. | ||
- `RUSTC_BOOTSTRAP=-1` will force a given `rustc` to pretend that is a stable | ||
compiler, even if it's actually a nightly `rustc`. This is useful because some | ||
behaviors of the compiler (e.g. diagnostics) can differ depending on whether | ||
the compiler is nightly or not. | ||
|
||
In `ui` tests and other test suites that support `//@ rustc-env`, you can specify | ||
|
||
```rust,ignore | ||
// Force unstable features to be usable on stable rustc | ||
//@ rustc-env:RUSTC_BOOTSTRAP=1 | ||
// Or force nightly rustc to pretend it is a stable rustc | ||
//@ rustc-env:RUSTC_BOOTSTRAP=-1 | ||
``` | ||
|
||
For `run-make` tests, `//@ rustc-env` is not supported. You can do something | ||
like the following for individual `rustc` invocations. | ||
|
||
```rust,ignore | ||
use run_make_support::rustc; | ||
fn main() { | ||
rustc() | ||
// Pretend that I am very stable | ||
.env("RUSTC_BOOTSTRAP", "-1") | ||
//... | ||
.run(); | ||
} | ||
``` |