- Properly skip debugger test when optional deps not available
+ - Make sure pure-perl tests pass correctly on space-containing
+ paths (RT#77528)
[0.23]
- Rely on B::Hooks::EndOfScope version 0.10 to fix issues with
use Config;
use FindBin qw($Bin);
use IPC::Open2 qw(open2);
+use File::Glob 'bsd_glob';
# for the $^X-es
$ENV{PERL5LIB} = join ($Config{path_sep}, @INC);
# rerun the tests under the assumption of pure-perl
my $this_file = quotemeta(__FILE__);
-for my $fn (glob("$Bin/*.t")) {
+for my $fn (bsd_glob("$Bin/*.t")) {
next if $fn =~ /${this_file}$/;
local $ENV{DEVEL_HIDE_VERBOSE} = 0;