From c6587b0160b4e083dd70a2c1ecc1f79df00b35b3 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sun, 27 Nov 2022 13:26:31 +0100 Subject: [PATCH] run_tests_minimal: actually run the smoke test on the desired target --- src/tools/miri/ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/miri/ci.sh b/src/tools/miri/ci.sh index e528be8b037..8600091ece8 100755 --- a/src/tools/miri/ci.sh +++ b/src/tools/miri/ci.sh @@ -88,7 +88,7 @@ function run_tests_minimal { ./miri test -- "$@" # Ensure that a small smoke test of cargo-miri works. - cargo miri run --manifest-path test-cargo-miri/no-std-smoke/Cargo.toml + cargo miri run --manifest-path test-cargo-miri/no-std-smoke/Cargo.toml --target ${MIRI_TEST_TARGET-$HOST_TARGET} endgroup }