aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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