From: Richard Levitte Date: Tue, 2 Aug 2016 11:27:39 +0000 (+0200) Subject: 80-test_ssl_new.t: only skip on $no_tls if no other skip conditions defined X-Git-Tag: OpenSSL_1_1_0-pre6~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f37c159aed4bca0b7d3ea4657c450826850c8e75;p=oweals%2Fopenssl.git 80-test_ssl_new.t: only skip on $no_tls if no other skip conditions defined Reviewed-by: Matt Caswell --- diff --git a/test/recipes/80-test_ssl_new.t b/test/recipes/80-test_ssl_new.t index 941ace7b72..17e22f0d13 100644 --- a/test/recipes/80-test_ssl_new.t +++ b/test/recipes/80-test_ssl_new.t @@ -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); } }