diff options
author | Matt Caswell <matt@openssl.org> | 2020-04-20 18:06:40 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-04-21 15:50:48 +0200 |
commit | eb7598039683971b020a3d1395b2ca1257579a59 (patch) | |
tree | da59cafcc34f70d62b532e7d5f78d6c81cd1c9e6 /test/recipes/80-test_ssl_old.t | |
parent | Fix test_ssl_new test failure (diff) | |
download | openssl-eb7598039683971b020a3d1395b2ca1257579a59.tar.xz openssl-eb7598039683971b020a3d1395b2ca1257579a59.zip |
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)
Diffstat (limited to '')
-rw-r--r-- | test/recipes/80-test_ssl_old.t | 3 |
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])), |