From: Richard Levitte Date: Mon, 15 Aug 2016 13:58:16 +0000 (+0200) Subject: Skip the SRP tests in 80-test_ssl_old.t if no TLS versions is enabled X-Git-Tag: OpenSSL_1_1_0~200 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a0ef6bb6874ea362ef78e0df1435212383df4774;p=oweals%2Fopenssl.git Skip the SRP tests in 80-test_ssl_old.t if no TLS versions is enabled Reviewed-by: Rich Salz --- 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');