Commit f37c159a authored by Richard Levitte's avatar Richard Levitte
Browse files

80-test_ssl_new.t: only skip on $no_tls if no other skip conditions defined

parent f4947bf1
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -62,7 +62,7 @@ foreach my $conf (@conf_files) {
    subtest "Test configuration $conf" => sub {
    subtest "Test configuration $conf" => sub {
        test_conf($conf,
        test_conf($conf,
                  $conf_dependent_tests{$conf} || $^O eq "VMS" ?  0 : 1,
                  $conf_dependent_tests{$conf} || $^O eq "VMS" ?  0 : 1,
                  $skip{$conf} || $no_tls);
                  defined($skip{$conf}) ? $skip{$conf} : $no_tls);
    }
    }
}
}