From: Nicholas Clark Date: Thu, 7 Aug 2008 07:45:31 +0000 (+0000) Subject: Run t/uni/*.t t/mro/*.t t/lib/*.t fully in parallel. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e6867818d3d9ce24342ef3f6ceff06868f5e8457;p=p5sagit%2Fp5-mst-13.2.git Run t/uni/*.t t/mro/*.t t/lib/*.t fully in parallel. p4raw-id: //depot/perl@34176 --- diff --git a/t/harness b/t/harness index d137701..bcf6809 100644 --- a/t/harness +++ b/t/harness @@ -137,10 +137,13 @@ if (@ARGV) { push @seq, ; 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;