34 lines
736 B
Bash
Executable File
34 lines
736 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Determine configuration
|
|
if [ "$TRAVIS_OS_NAME" == linux ]; then
|
|
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
|
|
|
|
if [ -n "${FOREIGN_TARGET+exists}" ]; then
|
|
echo "Test foreign architecture ($FOREIGN_TARGET)"
|
|
MIRI_TEST_TARGET="$FOREIGN_TARGET" run_tests
|
|
echo
|
|
fi
|