diff options
author | Matt Caswell <matt@openssl.org> | 2018-02-09 10:19:14 +0000 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-02-09 17:44:43 +0000 |
commit | c423ecaa7f6d0cc77c4f121c6de7d585439bca8f (patch) | |
tree | 8dd31481afb05f8febe065821ad74a0e17ea02df /test/recipes/70-test_sslcertstatus.t | |
parent | 83739b39e55fcdd9dd395bc619b1b7fafcc32f5c (diff) | |
download | openssl-new-c423ecaa7f6d0cc77c4f121c6de7d585439bca8f.tar.gz |
Fixes for no-tls1_2 and no-tls1_2-method
The no-tls1_2 option does not work properly in conjunction with TLSv1.3
being enabled (which is now the default). This commit fixes the issues.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5301)
Diffstat (limited to 'test/recipes/70-test_sslcertstatus.t')
-rw-r--r-- | test/recipes/70-test_sslcertstatus.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/recipes/70-test_sslcertstatus.t b/test/recipes/70-test_sslcertstatus.t index da8a3e51e5..96a46ce5f4 100644 --- a/test/recipes/70-test_sslcertstatus.t +++ b/test/recipes/70-test_sslcertstatus.t @@ -27,7 +27,8 @@ plan skip_all => "$test_name needs the ocsp feature enabled" if disabled("ocsp"); plan skip_all => "$test_name needs TLS enabled" - if alldisabled(available_protocols("tls")); + if alldisabled(available_protocols("tls")) + || (!disabled("tls1_3") && disabled("tls1_2")); $ENV{OPENSSL_ia32cap} = '~0x200000200000000'; my $proxy = TLSProxy::Proxy->new( |