diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-12 09:53:31 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-13 10:03:56 +0200 |
commit | 36d70ed51968adf9b2e7d7c67368aaccda7eabfe (patch) | |
tree | babe5733bc7c818454c43e02b553dbdce7573e9d | |
parent | Rename int_*() functions to *_int() (diff) | |
download | openssl-36d70ed51968adf9b2e7d7c67368aaccda7eabfe.tar.xz openssl-36d70ed51968adf9b2e7d7c67368aaccda7eabfe.zip |
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>
-rw-r--r-- | test/recipes/80-test_ssl_old.t | 2 |
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"]))); |