diff options
| author | Ralf Jung <post@ralfj.de> | 2022-08-05 17:59:47 -0400 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-08-05 17:59:47 -0400 |
| commit | 54b122e9132937bb0aa3514b3d5852b68e7ddf04 (patch) | |
| tree | aca805644b4eb8cc8c7c818a8c6c157caf4bee6e /src | |
| parent | d5e9e94741fd16320f5491397645fb137195eb06 (diff) | |
| download | rust-54b122e9132937bb0aa3514b3d5852b68e7ddf04.tar.gz rust-54b122e9132937bb0aa3514b3d5852b68e7ddf04.zip | |
propagate --bless to Miri
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/test.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 05403cf48c7..782cbd8f5ff 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -628,6 +628,10 @@ impl Step for Miri { cargo.env("MIRI_HOST_SYSROOT", sysroot); cargo.env("RUSTC_LIB_PATH", builder.rustc_libdir(compiler)); cargo.env("MIRI", miri); + // propagate --bless + if builder.config.cmd.bless() { + cargo.env("MIRI_BLESS", "Gesundheit"); + } cargo.arg("--").args(builder.config.cmd.test_args()); |
