summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-12 08:53:31 +0100
committerMatt Caswell <matt@openssl.org>2016-04-13 09:03:56 +0100
commit36d70ed51968adf9b2e7d7c67368aaccda7eabfe (patch)
treebabe5733bc7c818454c43e02b553dbdce7573e9d /test
parentb3599dbb6af7e28efae5f08ace99cc75f5e90b2f (diff)
Fix no-tls1_1 and no-tls1_2
The above config options were failing in test_ssl_old. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/recipes/80-test_ssl_old.t2
1 files changed, 1 insertions, 1 deletions
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"])));