aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-10-14 22:53:34 -0700
committerGitHub <[email protected]>2016-10-14 22:53:34 -0700
commit55b960fb92380db8d73df9e9ce1aa7e5c0355a2d (patch)
tree0965ef1bcba7a170ae8025d8117f193787389c2f
parentMerge pull request #472 from sfackler/alpn-test (diff)
parentDon't run test on ARM (diff)
downloadrust-openssl-55b960fb92380db8d73df9e9ce1aa7e5c0355a2d.tar.xz
rust-openssl-55b960fb92380db8d73df9e9ce1aa7e5c0355a2d.zip
Merge pull request #473 from sfackler/arm-build-only
Don't run test on ARM
-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