diff options
author | Matt Caswell <matt@openssl.org> | 2016-10-30 09:38:52 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-11-02 14:08:21 +0100 |
commit | 84a68336581b7d25fefe693bf92b5b3751f4b5f6 (patch) | |
tree | b03fbff07ea0b0b035d8e01e2916fc67ef80aca2 /test/recipes/80-test_ssl_new.t | |
parent | Use ciphersuite id when matching if we've got one (diff) | |
download | openssl-84a68336581b7d25fefe693bf92b5b3751f4b5f6.tar.xz openssl-84a68336581b7d25fefe693bf92b5b3751f4b5f6.zip |
Update Configure to know about tls1_3
Also we disable TLS1.3 by default (use enable-tls1_3 to re-enable). This is
because this is a WIP and will not be interoperable with any other TLS1.3
implementation.
Finally, we fix some tests that started failing when TLS1.3 was disabled by
default.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/recipes/80-test_ssl_new.t')
-rw-r--r-- | test/recipes/80-test_ssl_new.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/recipes/80-test_ssl_new.t b/test/recipes/80-test_ssl_new.t index 54e32bb878..1e92907d56 100644 --- a/test/recipes/80-test_ssl_new.t +++ b/test/recipes/80-test_ssl_new.t @@ -34,7 +34,8 @@ plan tests => 18; # = scalar @conf_srcs # Some test results depend on the configuration of enabled protocols. We only # verify generated sources in the default configuration. my $is_default_tls = (disabled("ssl3") && !disabled("tls1") && - !disabled("tls1_1") && !disabled("tls1_2")); + !disabled("tls1_1") && !disabled("tls1_2") && + disabled("tls1_3")); my $is_default_dtls = (!disabled("dtls1") && !disabled("dtls1_2")); |