From: Matt Caswell Date: Mon, 20 Apr 2020 16:06:40 +0000 (+0100) Subject: Fix an ssl_test_old test failure X-Git-Tag: openssl-3.0.0-alpha1~23 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=eb7598039683971b020a3d1395b2ca1257579a59;p=oweals%2Fopenssl.git 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 (Merged from https://github.com/openssl/openssl/pull/11586) --- 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])),