Don't run test on ARM
They're very segfaulty, but it's almost certainly due to the QEMU layer. We really just want to make sure things compile.
This commit is contained in:
parent
1fe16382e0
commit
984b9a0cc7
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue