diff options
| author | Steven Fackler <[email protected]> | 2015-10-05 22:34:57 +0100 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-10-05 22:34:57 +0100 |
| commit | cb2c860d022426820cc8c4228e68ef258b85b326 (patch) | |
| tree | 3daecc337d7a866e06646a7551ac912078c68c73 /openssl/test/test.sh | |
| parent | Merge branch 'release-v0.6.5' into release (diff) | |
| parent | Release v0.6.6 (diff) | |
| download | rust-openssl-0.6.6.tar.xz rust-openssl-0.6.6.zip | |
Merge branch 'release-v0.6.6' into releasev0.6.6
Diffstat (limited to 'openssl/test/test.sh')
| -rwxr-xr-x | openssl/test/test.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/openssl/test/test.sh b/openssl/test/test.sh deleted file mode 100755 index 9beb37c3..00000000 --- a/openssl/test/test.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -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" -alpn "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 -fi - -for port in `seq 15411 15430`; do - echo hello | openssl s_server -accept $port -dtls1 -cert cert.pem \ - -key key.pem 2>&1 >/dev/null & -done - -# the server for the test ssl::tests::test_write_dtlsv1 must wait to receive -# data from the client -yes | openssl s_server -accept 15410 -dtls1 -cert cert.pem -key key.pem 2>&1 >/dev/null & |