Commit ea24bb0a authored by Richard Levitte's avatar Richard Levitte
Browse files

Fix no-tls1_2



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

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2268)
parent 0db1fb3f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {