From 36d70ed51968adf9b2e7d7c67368aaccda7eabfe Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 12 Apr 2016 08:53:31 +0100 Subject: [PATCH] Fix no-tls1_1 and no-tls1_2 The above config options were failing in test_ssl_old. Reviewed-by: Richard Levitte --- test/recipes/80-test_ssl_old.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/recipes/80-test_ssl_old.t b/test/recipes/80-test_ssl_old.t index 8138570465..879ab7fc0f 100644 --- a/test/recipes/80-test_ssl_old.t +++ b/test/recipes/80-test_ssl_old.t @@ -768,7 +768,7 @@ sub testssl { plan tests => 12; SKIP: { - skip "TLS disabled", 12 if $no_anytls; + skip "TLS1.1 or TLS1.2 disabled", 12 if $no_tls1_1 || $no_tls1_2; ok(run(test([@ssltest, "-server_sess_out", $server_sess, "-client_sess_out", $client_sess]))); ok(run(test([@ssltest, "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "tls1.2"]))); ok(run(test([@ssltest, "-server_max_proto", "tls1.1", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "0", "-should_negotiate", "tls1.1"]))); -- GitLab