aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-10-14 22:28:24 -0700
committerSteven Fackler <[email protected]>2016-10-14 22:28:24 -0700
commit984b9a0cc7257befe031c922fffe19ef65f2f2e7 (patch)
tree0965ef1bcba7a170ae8025d8117f193787389c2f
parentMerge pull request #472 from sfackler/alpn-test (diff)
downloadrust-openssl-984b9a0cc7257befe031c922fffe19ef65f2f2e7.tar.xz
rust-openssl-984b9a0cc7257befe031c922fffe19ef65f2f2e7.zip
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.
-rwxr-xr-xopenssl/test/run.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/openssl/test/run.sh b/openssl/test/run.sh
index cc4756bf..cd422db7 100755
--- a/openssl/test/run.sh
+++ b/openssl/test/run.sh
@@ -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