]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix test_sslextension if TLSv1.2 has been disabled
authorMatt Caswell <matt@openssl.org>
Tue, 23 Jul 2019 14:12:29 +0000 (15:12 +0100)
committerMatt Caswell <matt@openssl.org>
Fri, 9 Aug 2019 16:29:39 +0000 (17:29 +0100)
A skip rule was skipping the wrong number of tests.

Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/9442)

test/recipes/70-test_sslextension.t

index 93d7f47bf28d7e9e9276d6fc53175af90ab9b3a8..f60e352a3c683b4105fe52da12de2b27dd049762 100644 (file)
@@ -201,7 +201,7 @@ $proxy->start();
 ok($fatal_alert, "Duplicate ServerHello extension");
 
 SKIP: {
-    skip "TLS <= 1.2 disabled", 3 if $no_below_tls13;
+    skip "TLS <= 1.2 disabled", 2 if $no_below_tls13;
 
     #Test 3: Sending a zero length extension block should pass
     $proxy->clear();