Change 34191 by [EMAIL PROTECTED] on 2008/08/09 13:16:03
Don't need to do the globbing before building the rules, as it makes
the rules larger than necessary, and potentially slows things down.
Affected files ...
... //depot/perl/t/harness#51 edit
Differences ...
==== //depot/perl/t/harness#51 (text) ====
Index: perl/t/harness
--- perl/t/harness#50~34185~ 2008-08-08 03:15:33.000000000 -0700
+++ perl/t/harness 2008-08-09 06:16:03.000000000 -0700
@@ -130,7 +130,7 @@
push @next, 'japh' if $torture;
push @next, 'win32' if $^O eq 'MSWin32';
push @seq, { par => [
- map { glob "$_/*.t" } @next
+ map { "$_/*.t" } @next
] };
my @last;
End of Patch.