From ab84c6a61d1f50db69c936372027de1d5cc2a7ea 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 --- ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci.sh b/ci.sh index e528be8b03..8600091ece 100755 --- a/ci.sh +++ b/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 }