summaryrefslogtreecommitdiffstats
path: root/test/testssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-06-25 15:07:25 +0100
committerDr. Stephen Henson <steve@openssl.org>2015-06-29 19:21:15 +0100
commitf8f75a7e4a7746caba9cab843e14ed6a41dfad21 (patch)
tree7b1bee4c15e000f8d6a6b0638e16043371604f68 /test/testssl
parent7c1dae55d476d94c96db68de20670c1066d281b3 (diff)
Check for errors with SRP
Reviewed-by: Matt Caswell <matt@openssl.org> (cherry picked from commit 5fced2395ddfb603a50fd1bd87411e603a59dc6f)
Diffstat (limited to 'test/testssl')
-rw-r--r--test/testssl8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testssl b/test/testssl
index c3461b0880..747e4ba381 100644
--- a/test/testssl
+++ b/test/testssl
@@ -253,16 +253,16 @@ if ../util/shlib_wrap.sh ../apps/openssl no-srp; then
echo skipping SRP tests
else
echo test tls1 with SRP
- $ssltest -tls1 -cipher SRP -srpuser test -srppass abc123
+ $ssltest -tls1 -cipher SRP -srpuser test -srppass abc123 || exit 1
echo test tls1 with SRP via BIO pair
- $ssltest -bio_pair -tls1 -cipher SRP -srpuser test -srppass abc123
+ $ssltest -bio_pair -tls1 -cipher SRP -srpuser test -srppass abc123 || exit 1
echo test tls1 with SRP auth
- $ssltest -tls1 -cipher aSRP -srpuser test -srppass abc123
+ $ssltest -tls1 -cipher aSRP -srpuser test -srppass abc123 || exit 1
echo test tls1 with SRP auth via BIO pair
- $ssltest -bio_pair -tls1 -cipher aSRP -srpuser test -srppass abc123
+ $ssltest -bio_pair -tls1 -cipher aSRP -srpuser test -srppass abc123 || exit 1
fi
#############################################################################