File::Glob option ':bsd_glob' doesn't work everywhere, replace w/ a wrapper
[oweals/openssl.git] / test / run_tests.pl
index 1171eec2f75ed1280018b5ffa057174a95946990..9f517da3a9499dfbfcfaac2d291a9f2c14dff2a4 100644 (file)
@@ -16,7 +16,9 @@ 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 FindBin;
+use lib "$FindBin::Bin/../util/perl";
+use OpenSSL::Glob;
 use Module::Load::Conditional qw(can_load);
 
 my $TAP_Harness = can_load(modules => { 'TAP::Harness' => undef })