From f37c159aed4bca0b7d3ea4657c450826850c8e75 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 2 Aug 2016 13:27:39 +0200 Subject: [PATCH] 80-test_ssl_new.t: only skip on $no_tls if no other skip conditions defined Reviewed-by: Matt Caswell --- test/recipes/80-test_ssl_new.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.25.1