aboutsummaryrefslogtreecommitdiff
path: root/openssl/test
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-10-17 21:21:09 -0700
committerSteven Fackler <[email protected]>2016-10-17 21:57:54 -0700
commit194298a057bad2b79e45ef346a0e6f37f8bc0716 (patch)
tree2725a3d891ba46de9b93a6e752a6f0c96f58ebbb /openssl/test
parentMerge pull request #476 from sfackler/error-handling (diff)
downloadrust-openssl-194298a057bad2b79e45ef346a0e6f37f8bc0716.tar.xz
rust-openssl-194298a057bad2b79e45ef346a0e6f37f8bc0716.zip
Implement new feature setup
The basic idea here is that there is a feature for each supported OpenSSL version. Enabling multiple features represents support for multiple OpenSSL versions, but it's then up to you to check which version you link against (probably by depending on openssl-sys and making a build script similar to what openssl does).
Diffstat (limited to 'openssl/test')
-rwxr-xr-xopenssl/test/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/test/run.sh b/openssl/test/run.sh
index cd422db7..4d3397a6 100755
--- a/openssl/test/run.sh
+++ b/openssl/test/run.sh
@@ -3,10 +3,10 @@ set -e
case "$BUILD_OPENSSL_VERSION" in
1.0.2*)
- FEATURES="openssl-102"
+ FEATURES="v102"
;;
1.1.0*)
- FEATURES="openssl-110"
+ FEATURES="v110"
;;
esac