diff options
| author | Steven Fackler <[email protected]> | 2016-10-14 22:28:24 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-10-14 22:28:24 -0700 |
| commit | 984b9a0cc7257befe031c922fffe19ef65f2f2e7 (patch) | |
| tree | 0965ef1bcba7a170ae8025d8117f193787389c2f | |
| parent | Merge pull request #472 from sfackler/alpn-test (diff) | |
| download | rust-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-x | openssl/test/run.sh | 6 |
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 |