From: Nicholas Clark Date: Sat, 9 Aug 2008 13:16:03 +0000 (+0000) Subject: Don't need to do the globbing before building the rules, as it makes X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2f4cffa7723545b6812f9ecf0e78635684033dad;p=p5sagit%2Fp5-mst-13.2.git Don't need to do the globbing before building the rules, as it makes the rules larger than necessary, and potentially slows things down. p4raw-id: //depot/perl@34191 --- diff --git a/t/harness b/t/harness index 41e895a..a701fc7 100644 --- a/t/harness +++ b/t/harness @@ -130,7 +130,7 @@ if (@ARGV) { push @next, 'japh' if $torture; push @next, 'win32' if $^O eq 'MSWin32'; push @seq, { par => [ - map { glob "$_/*.t" } @next + map { "$_/*.t" } @next ] }; my @last;