Fix ssl_test_new with no-tls1_2
authorMatt Caswell <matt@openssl.org>
Sun, 10 Dec 2017 10:15:34 +0000 (10:15 +0000)
committerMatt Caswell <matt@openssl.org>
Sun, 10 Dec 2017 11:05:59 +0000 (11:05 +0000)
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)

test/recipes/80-test_ssl_new.t

index caf353613acda30aa34b533e452a75bc5ab086c6..c5472ebf0f96b5d616296be3566d474136e0b6f0 100644 (file)
@@ -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) {