diff options
| author | Steven Fackler <[email protected]> | 2017-07-16 10:02:02 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2017-07-16 14:15:09 -0700 |
| commit | 3a7ca9c2ff607b65e0db2ea4bb167c1304da86e8 (patch) | |
| tree | 7665b2f07eec21f461b6e55456bc8f04aa8a7858 /openssl/test/run.sh | |
| parent | Tell docs.rs to build with all features (diff) | |
| download | rust-openssl-3a7ca9c2ff607b65e0db2ea4bb167c1304da86e8.tar.xz rust-openssl-3a7ca9c2ff607b65e0db2ea4bb167c1304da86e8.zip | |
Switch over Linux tests to CircleCI
Diffstat (limited to 'openssl/test/run.sh')
| -rwxr-xr-x | openssl/test/run.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/openssl/test/run.sh b/openssl/test/run.sh deleted file mode 100755 index 32817dcc..00000000 --- a/openssl/test/run.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash -set -e - -case "$BUILD_OPENSSL_VERSION" in - 1.0.2*) - FEATURES="v102" - ;; - 1.1.0*) - FEATURES="v110" - ;; -esac - -echo Using features: $FEATURES - -if [ -n "${BUILD_LIBRESSL_VERSION}" -a -d "$HOME/libressl/lib" ]; then - echo "Testing build libressl-${BUILD_LIBRESSL_VERSION}" - export OPENSSL_DIR=${HOME}/libressl - export LD_LIBRARY_PATH="${HOME}/libressl/lib:${LD_LIBRARY_PATH}" - export PATH="${HOME}/libressl/bin:${PATH}" - -elif [ -n "${BUILD_OPENSSL_VERSION}" -a -d "$HOME/openssl/lib" ]; then - echo "Testing build openssl-${BUILD_LIBRESSL_VERSION}" - export OPENSSL_DIR="${HOME}/openssl" - export LD_LIBRARY_PATH="${HOME}/openssl/lib:${LD_LIBRARY_PATH}" - 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 -v -exec cargo test --manifest-path openssl/Cargo.toml --target $TARGET \ - --features "$FEATURES" -v $FLAGS |