Commit 55b960fb authored by Steven Fackler's avatar Steven Fackler Committed by GitHub
Browse files

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

Don't run test on ARM
parents 1fe16382 984b9a0c
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -17,6 +17,10 @@ if [ -d "$HOME/openssl/lib" ]; then
    export PATH=$HOME/openssl/bin:$PATH
fi

if [ "$TARGET" == "arm-unknown-linux-gnueabihf" ]; then
    FLAGS="--no-run"
fi

cargo run --manifest-path systest/Cargo.toml --target $TARGET
exec cargo test --manifest-path openssl/Cargo.toml --target $TARGET \
    --features "$FEATURES"
    --features "$FEATURES" $FLAGS