We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72cd133 commit 336a59dCopy full SHA for 336a59d
tests/compiletest.rs
@@ -101,7 +101,7 @@ fn get_host() -> String {
101
}
102
103
fn get_target() -> String {
104
- std::env::var("MIRI_TARGET").unwrap_or_else(|_| get_host())
+ std::env::var("MIRI_COMPILETEST_TARGET").unwrap_or_else(|_| get_host())
105
106
107
fn run_pass_miri(opt: bool) {
travis.sh
@@ -22,7 +22,7 @@ echo
22
23
echo "Test miri with full MIR, on the host and other architectures"
24
MIRI_SYSROOT="$MIRI_SYSROOT_BASE"/HOST cargo test --release --all-features
25
-MIRI_SYSROOT="$MIRI_SYSROOT_BASE" MIRI_TARGET="$FOREIGN_TARGET" cargo test --release --all-features
+MIRI_SYSROOT="$MIRI_SYSROOT_BASE" MIRI_COMPILETEST_TARGET="$FOREIGN_TARGET" cargo test --release --all-features
26
echo
27
28
echo "Test cargo integration"
0 commit comments