* De-retardize XS-less behavior under SpeedyCGI
+ * Test suite now works from within space-containing paths
0.05 Thu, 26 Apr 2012
* Pure-perl implementation for situations where neither ${^GLOBAL_PHASE} nor
use FindBin qw($Bin);
use Config;
use IPC::Open2;
+use File::Glob 'bsd_glob'; # support spaces in names unlike glob()
# rerun the tests under the assumption of pure-perl
my $this_file = quotemeta(__FILE__);
-my @tests = grep { $_ !~ /${this_file}$/ } glob("$Bin/*.t");
+my @tests = grep { $_ !~ /${this_file}$/ } bsd_glob("$Bin/*.t");
print "1..@{[ scalar @tests ]}\n";
sub ok ($$) {