diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | t/helper.pm | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- cpan_testers: + o do not skip network tests on pre-UsrMove distros (eg: Mageia 2) + Version 8.122 - 28 April 2020 - cpan_testers: diff --git a/t/helper.pm b/t/helper.pm index 950c3c65..74e0eb07 100644 --- a/t/helper.pm +++ b/t/helper.pm @@ -53,7 +53,7 @@ sub need_downloader() { my @dl_helpers = qw(wget curl prozilla aria2c); my $found; foreach (@dl_helpers) { - -e "/bin/$_" and $found = 1; + -e "/bin/$_" || -e "/usr/bin/$_" and $found = 1; } if (!$found) { warn "SKIPing because we're missing a downloader. We need one of wget/curl/prozilla/aria2c"; |