summaryrefslogtreecommitdiff
path: root/t/harness
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-08-07 07:45:31 +0000
committerNicholas Clark <nick@ccl4.org>2008-08-07 07:45:31 +0000
commite6867818d3d9ce24342ef3f6ceff06868f5e8457 (patch)
treef0dcf88843a19131f26a0536ce59167adb076b94 /t/harness
parent75ff0aabd99f2dc0b759e6d27a79bfedc15168a7 (diff)
downloadperl-e6867818d3d9ce24342ef3f6ceff06868f5e8457.tar.gz
Run t/uni/*.t t/mro/*.t t/lib/*.t fully in parallel.
p4raw-id: //depot/perl@34176
Diffstat (limited to 't/harness')
-rw-r--r--t/harness7
1 files changed, 5 insertions, 2 deletions
diff --git a/t/harness b/t/harness
index d137701d90..bcf6809019 100644
--- a/t/harness
+++ b/t/harness
@@ -137,10 +137,13 @@ if (@ARGV) {
push @seq, <base/*.t>;
push @seq, _glob_and_parallelise qw(comp cmd run io);
- my @next = qw(op uni mro lib);
+ my @next = qw(uni mro lib);
push @next, 'japh' if $torture;
push @next, 'win32' if $^O eq 'MSWin32';
- push @seq, _glob_and_parallelise @next;
+ push @seq, { par => [
+ {seq => [ glob "op/*.t" ]},
+ map { glob "$_/*.t" } @next
+ ] };
my @last;
use Config;