summaryrefslogtreecommitdiffstats
path: root/test/run_tests.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-07-28 13:38:03 +0200
committerRichard Levitte <levitte@openssl.org>2017-07-28 14:47:55 +0200
commit0401110073cd392602855f9b72af2ebec7909625 (patch)
tree8e93489c7fb139ec4a6f38408063a2f58b4ac5a8 /test/run_tests.pl
parent574496c0537ac12b3e313fbcfe271e5e609388ae (diff)
Perl: Use File::Glob::bsd_glob rather than File::Glob::glob
File::Glob::glob is deprecated, it's use generates this kind of message: File::Glob::glob() will disappear in perl 5.30. Use File::Glob::bsd_glob() instead. at ../master/Configure line 277. So instead, use a construction that makes the caller glob() use File::Glob::bsd_glob(). Note that we're still excluding VMS, as it's directory specs use '[' and ']', which have a different meaning with bsd_glob and would need some extra quoting. This might change, but later. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4040) (cherry picked from commit 102c9e1296b656c4049c1110abc8a52b43bd0dcf)
Diffstat (limited to 'test/run_tests.pl')
-rw-r--r--test/run_tests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_tests.pl b/test/run_tests.pl
index e5bc927e67..51d990092a 100644
--- a/test/run_tests.pl
+++ b/test/run_tests.pl
@@ -16,7 +16,7 @@ BEGIN {
use File::Spec::Functions qw/catdir catfile curdir abs2rel rel2abs/;
use File::Basename;
-use if $^O ne "VMS", 'File::Glob' => qw/glob/;
+use if $^O ne "VMS", 'File::Glob' => qw/:bsd_glob/;
use Module::Load::Conditional qw(can_load);
my $TAP_Harness = can_load(modules => { 'TAP::Harness' => undef })