80-test_ssl_new.t: only skip on $no_tls if no other skip conditions defined
authorRichard Levitte <levitte@openssl.org>
Tue, 2 Aug 2016 11:27:39 +0000 (13:27 +0200)
committerRichard Levitte <levitte@openssl.org>
Tue, 2 Aug 2016 11:27:39 +0000 (13:27 +0200)
Reviewed-by: Matt Caswell <matt@openssl.org>
test/recipes/80-test_ssl_new.t

index 941ace7b72d9225bdd8e56b0dee00bb93669e9e4..17e22f0d1355bc201caa7bebf61ba8f93409074c 100644 (file)
@@ -62,7 +62,7 @@ foreach my $conf (@conf_files) {
     subtest "Test configuration $conf" => sub {
         test_conf($conf,
                   $conf_dependent_tests{$conf} || $^O eq "VMS" ?  0 : 1,
-                  $skip{$conf} || $no_tls);
+                  defined($skip{$conf}) ? $skip{$conf} : $no_tls);
     }
 }