diff options
author | Bodo Möller <bodo@openssl.org> | 2000-03-13 20:31:46 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2000-03-13 20:31:46 +0000 |
commit | 46c4647e3c7e5bd0ba9267091bb18677ee387f52 (patch) | |
tree | 1883389c23f38342db0c9a25855abf7cda6ce056 /test/testssl | |
parent | d58d6c27834a71627ab1001c8478de21ccaa8db7 (diff) | |
download | openssl-new-46c4647e3c7e5bd0ba9267091bb18677ee387f52.tar.gz |
"openssl no-..." commands for avoiding the need to grep
"openssl list-standard-commands".
Diffstat (limited to 'test/testssl')
-rw-r--r-- | test/testssl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/testssl b/test/testssl index 873df83128..2151a6438c 100644 --- a/test/testssl +++ b/test/testssl @@ -115,7 +115,9 @@ $ssltest -bio_pair -server_auth -client_auth $CA || exit 1 echo test tls1 with 1024bit anonymous DH, multiple handshakes $ssltest -v -bio_pair -tls1 -cipher ADH -dhe1024dsa -num 10 -f -time || exit 1 -if ../apps/openssl list-standard-commands | grep '^rsa$' >/dev/null; then +if ../apps/openssl no-rsa; then + echo skipping RSA tests +else echo test tls1 with 1024bit RSA, no DHE, multiple handshakes ./ssltest -v -bio_pair -tls1 -cert ../apps/server2.pem -no_dhe -num 10 -f -time || exit 1 |