diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2019-04-18 15:21:05 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2019-04-18 15:32:49 +0200 |
| commit | 4269be382fdf1ac92665234502bab33ef9c0d8fa (patch) | |
| tree | fd3b55857ceae5c5de615459a483daf7a6e7edc2 /src/bootstrap | |
| parent | 553ec5d3eb8af66f86599b0abb0efda74393921e (diff) | |
| download | rust-4269be382fdf1ac92665234502bab33ef9c0d8fa.tar.gz rust-4269be382fdf1ac92665234502bab33ef9c0d8fa.zip | |
Prefix PROFILER_SUPPORT and SANITIZER_SUPPORT test env vars with RUSTC_ to make things clearer.
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/test.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index c552f607960..a443b7b5863 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -1268,11 +1268,11 @@ impl Step for Compiletest { builder.add_rust_test_threads(&mut cmd); if builder.config.sanitizers { - cmd.env("SANITIZER_SUPPORT", "1"); + cmd.env("RUSTC_SANITIZER_SUPPORT", "1"); } if builder.config.profiler { - cmd.env("PROFILER_SUPPORT", "1"); + cmd.env("RUSTC_PROFILER_SUPPORT", "1"); } cmd.env("RUST_TEST_TMPDIR", builder.out.join("tmp")); |
