Fix no-tls1_1 and no-tls1_2
authorMatt Caswell <matt@openssl.org>
Tue, 12 Apr 2016 07:53:31 +0000 (08:53 +0100)
committerMatt Caswell <matt@openssl.org>
Wed, 13 Apr 2016 08:03:56 +0000 (09:03 +0100)
The above config options were failing in test_ssl_old.

Reviewed-by: Richard Levitte <levitte@openssl.org>
test/recipes/80-test_ssl_old.t

index 8138570465dbf8f0d4af34d07e60d4a824c2173e..879ab7fc0f1ee54706f433ead270eb756a68af53 100644 (file)
@@ -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"])));