From 984b9a0cc7257befe031c922fffe19ef65f2f2e7 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Fri, 14 Oct 2016 22:28:24 -0700 Subject: [PATCH] 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. --- openssl/test/run.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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