blob: af297129e821612260418ef098b597b6ad8e22e5 [file] [log] [blame]
#!/bin/bash
set -euo pipefail
# Determine configuration
if [ "$TRAVIS_OS_NAME" == osx ]; then
FOREIGN_TARGET=i686-apple-darwin
else
FOREIGN_TARGET=i686-unknown-linux-gnu
fi
export CARGO_EXTRA_FLAGS="--all-features"
export RUSTC_EXTRA_FLAGS="-D warnings"
# Prepare
echo "Build and install miri"
./miri build --all-targets --locked
./miri install # implicitly locked
echo
# Test
function run_tests {
./miri test --locked
# "miri test" has built the sysroot for us, now this should pass without
# any interactive questions.
test-cargo-miri/run-test.py
}
echo "Test host architecture"
run_tests
echo
echo "Test foreign architecture ($FOREIGN_TARGET)"
MIRI_TEST_TARGET="$FOREIGN_TARGET" run_tests
echo