diff options
| author | Steven Fackler <[email protected]> | 2015-06-25 23:07:25 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-06-25 23:07:25 -0700 |
| commit | 212acf0bb8fa6f500c76329ddb15e7f989e71915 (patch) | |
| tree | 9a48cfb865174b86972cfb6b690f6457aad32830 /openssl/test/test.sh | |
| parent | Fix EOF handling in retry wrapper (diff) | |
| download | rust-openssl-212acf0bb8fa6f500c76329ddb15e7f989e71915.tar.xz rust-openssl-212acf0bb8fa6f500c76329ddb15e7f989e71915.zip | |
Add a test for connection negotiation failure
Diffstat (limited to 'openssl/test/test.sh')
| -rwxr-xr-x | openssl/test/test.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl/test/test.sh b/openssl/test/test.sh index ef2294ef..975b124e 100755 --- a/openssl/test/test.sh +++ b/openssl/test/test.sh @@ -5,6 +5,7 @@ cd $(dirname $0) openssl s_server -accept 15418 -www -cert cert.pem -key key.pem >/dev/null 2>&1 & openssl s_server -accept 15419 -www -cert cert.pem -key key.pem \ -nextprotoneg "http/1.1,spdy/3.1" >/dev/null 2>&1 & +openssl s_server -no_ssl2 -accept 15420 -www -cert cert.pem -key key.pem >/dev/null 2>&1 & if test "$TRAVIS_OS_NAME" == "osx"; then return |