Merge pull request #473 from sfackler/arm-build-only

Don't run test on ARM
This commit is contained in:
Steven Fackler 2016-10-14 22:53:34 -07:00 committed by GitHub
commit 55b960fb92
1 changed files with 5 additions and 1 deletions

View File

@ -17,6 +17,10 @@ if [ -d "$HOME/openssl/lib" ]; then
export PATH=$HOME/openssl/bin:$PATH export PATH=$HOME/openssl/bin:$PATH
fi fi
if [ "$TARGET" == "arm-unknown-linux-gnueabihf" ]; then
FLAGS="--no-run"
fi
cargo run --manifest-path systest/Cargo.toml --target $TARGET cargo run --manifest-path systest/Cargo.toml --target $TARGET
exec cargo test --manifest-path openssl/Cargo.toml --target $TARGET \ exec cargo test --manifest-path openssl/Cargo.toml --target $TARGET \
--features "$FEATURES" --features "$FEATURES" $FLAGS