summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-07-23 15:12:29 +0100
committerMatt Caswell <matt@openssl.org>2019-08-09 17:29:39 +0100
commit53890ea27c8f8492dc31639bccc29968ee0bd5e9 (patch)
tree101d67fd08cc84cd7005912d5716b7d0c96d8532 /test
parent20946b94658416d2fed0b9d9c7adfbe4b7d70515 (diff)
Fix test_sslextension if TLSv1.2 has been disabled
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)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/70-test_sslextension.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/recipes/70-test_sslextension.t b/test/recipes/70-test_sslextension.t
index 93d7f47bf2..f60e352a3c 100644
--- a/test/recipes/70-test_sslextension.t
+++ b/test/recipes/70-test_sslextension.t
@@ -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();