mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
Fix ssl_test_new with no-tls1_2
The tests in 25-cipher.conf all use TLSv1.2 ciphersuites so we shouldn't run it if we don't have TLSv1.2 Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4889)
This commit is contained in:
parent
df36429749
commit
f5fea6657d
@ -94,7 +94,7 @@ my %skip = (
|
||||
"23-srp.conf" => (disabled("tls1") && disabled ("tls1_1")
|
||||
&& disabled("tls1_2")) || disabled("srp"),
|
||||
"24-padding.conf" => disabled("tls1_3"),
|
||||
"25-cipher.conf" => disabled("ec"),
|
||||
"25-cipher.conf" => disabled("ec") || disabled("tls1_2"),
|
||||
);
|
||||
|
||||
foreach my $conf (@conf_files) {
|
||||
|
Loading…
Reference in New Issue
Block a user