diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-08-07 07:45:31 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-08-07 07:45:31 +0000 |
commit | e6867818d3d9ce24342ef3f6ceff06868f5e8457 (patch) | |
tree | f0dcf88843a19131f26a0536ce59167adb076b94 /t/harness | |
parent | 75ff0aabd99f2dc0b759e6d27a79bfedc15168a7 (diff) | |
download | perl-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/harness | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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; |