Fix no-tls1_2

It seems that the ssl test 20-cert-select.conf dislikes the lack of TLSv1.2

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2268)
This commit is contained in:
Richard Levitte 2017-01-21 14:44:52 +01:00
parent 0db1fb3fc1
commit ea24bb0ac5

View File

@ -80,7 +80,7 @@ my %skip = (
"16-dtls-certstatus.conf" => $no_dtls || $no_ocsp,
"18-dtls-renegotiate.conf" => $no_dtls,
"19-mac-then-encrypt.conf" => $no_pre_tls1_3,
"20-cert-select.conf" => $no_ec,
"20-cert-select.conf" => disabled("tls1_2") || $no_ec,
);
foreach my $conf (@conf_files) {