summaryrefslogtreecommitdiffstats
path: root/test/run_tests.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-08-03 17:19:13 +0200
committerRichard Levitte <levitte@openssl.org>2017-08-03 17:21:15 +0200
commitef6d11f76fba7c9d4da821947f67acc5d603b99d (patch)
tree0a3101e8916ffb53491f45438a9a882159467dd2 /test/run_tests.pl
parent89fb0fb2a5391bd6cfd78bd201616ee68b5f5d34 (diff)
Revert "Perl: Use File::Glob::bsd_glob rather than File::Glob::glob"
This needs more change that what is appropriate for the 1.1.0 branch. This reverts commit 0401110073cd392602855f9b72af2ebec7909625. Reviewed-by: Andy Polyakov <appro@openssl.org>
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 51d990092a..e5bc927e67 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/:bsd_glob/;
+use if $^O ne "VMS", 'File::Glob' => qw/glob/;
use Module::Load::Conditional qw(can_load);
my $TAP_Harness = can_load(modules => { 'TAP::Harness' => undef })