diff options
author | Richard Levitte <levitte@openssl.org> | 2016-08-15 15:58:16 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-08-15 17:16:47 +0200 |
commit | a0ef6bb6874ea362ef78e0df1435212383df4774 (patch) | |
tree | f03b8cfb3ed1d17241429b440ee278b4aa759822 /test/recipes/80-test_ssl_old.t | |
parent | Fix no-ec (diff) | |
download | openssl-a0ef6bb6874ea362ef78e0df1435212383df4774.tar.xz openssl-a0ef6bb6874ea362ef78e0df1435212383df4774.zip |
Skip the SRP tests in 80-test_ssl_old.t if no TLS versions is enabled
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/recipes/80-test_ssl_old.t')
-rw-r--r-- | test/recipes/80-test_ssl_old.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/recipes/80-test_ssl_old.t b/test/recipes/80-test_ssl_old.t index 22bb226470..9347c9605b 100644 --- a/test/recipes/80-test_ssl_old.t +++ b/test/recipes/80-test_ssl_old.t @@ -564,7 +564,7 @@ sub testssl { SKIP: { skip "skipping SRP tests", 4 - if $no_srp; + if $no_srp || alldisabled(grep !/^ssl3/, available_protocols("tls")); ok(run(test([@ssltest, "-tls1", "-cipher", "SRP", "-srpuser", "test", "-srppass", "abc123"])), 'test tls1 with SRP'); |