summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-04-20 17:06:40 +0100
committerMatt Caswell <matt@openssl.org>2020-04-21 14:50:48 +0100
commiteb7598039683971b020a3d1395b2ca1257579a59 (patch)
treeda59cafcc34f70d62b532e7d5f78d6c81cd1c9e6
parent62ba834554d8795cb247a3a6fd630b56f1716709 (diff)
Fix an ssl_test_old test failure
In builds where SSLv3 is enabled ssl_test_old was failing. We need to make sure we disable SSLv3 related tests when using the FIPS provider. [extended tests] Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11586)
-rw-r--r--test/recipes/80-test_ssl_old.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/recipes/80-test_ssl_old.t b/test/recipes/80-test_ssl_old.t
index e065821719..78bb89338b 100644
--- a/test/recipes/80-test_ssl_old.t
+++ b/test/recipes/80-test_ssl_old.t
@@ -361,6 +361,9 @@ sub testssl {
skip "SSLv3 is not supported by this OpenSSL build", 4
if disabled("ssl3");
+ skip "SSLv3 is not supported by the FIPS provider", 4
+ if $provider eq "fips";
+
ok(run(test([@ssltest, "-bio_pair", "-ssl3"])),
'test sslv3 via BIO pair');
ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-server_auth", @CA])),