diff options
| author | Steven Fackler <[email protected]> | 2016-08-09 22:56:08 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-09 22:56:08 -0700 |
| commit | 00db0bc4b312218b4f4165909a8bbf56522b0099 (patch) | |
| tree | c617b2e5f3210edff7594338c33889075b62f9df | |
| parent | Make hmac support optional and remove openssl-sys-extras (diff) | |
| download | rust-openssl-00db0bc4b312218b4f4165909a8bbf56522b0099.tar.xz rust-openssl-00db0bc4b312218b4f4165909a8bbf56522b0099.zip | |
Test hmac features
| -rwxr-xr-x | openssl/test/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/test/run.sh b/openssl/test/run.sh index 22a54c4d..7dc01f50 100755 --- a/openssl/test/run.sh +++ b/openssl/test/run.sh @@ -4,7 +4,7 @@ set -e MAIN_TARGETS=https://static.rust-lang.org/dist if [ "$TEST_FEATURES" == "true" ]; then - FEATURES="tlsv1_2 tlsv1_1 dtlsv1 dtlsv1_2 sslv3 aes_xts aes_ctr npn alpn rfc5114 ecdh_auto pkcs5_pbkdf2_hmac x509_clone ssl_context_clone x509_generator_request" + FEATURES="tlsv1_2 tlsv1_1 dtlsv1 dtlsv1_2 sslv3 aes_xts aes_ctr npn alpn rfc5114 ecdh_auto pkcs5_pbkdf2_hmac x509_clone ssl_context_clone x509_generator_request hmac hmac_clone" fi if [ "$TRAVIS_OS_NAME" != "osx" ]; then |