summaryrefslogtreecommitdiff
path: root/t/harness
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-08-09 13:16:03 +0000
committerNicholas Clark <nick@ccl4.org>2008-08-09 13:16:03 +0000
commit2f4cffa7723545b6812f9ecf0e78635684033dad (patch)
treeeaac50c8c37bfacd32da0bc64b66a144011408f4 /t/harness
parentcd1d2f8a20b8a9f92576c0e00d1dc723574ea002 (diff)
downloadperl-2f4cffa7723545b6812f9ecf0e78635684033dad.tar.gz
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
Diffstat (limited to 't/harness')
-rw-r--r--t/harness2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/harness b/t/harness
index 41e895a955..a701fc765a 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;