Skip to content

Commit

Permalink
Run t/uni/*.t t/mro/*.t t/lib/*.t fully in parallel.
Browse files Browse the repository at this point in the history
p4raw-id: //depot/perl@34176
  • Loading branch information
nwc10 committed Aug 7, 2008
1 parent 75ff0aa commit e686781
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions t/harness
Expand Up @@ -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;
Expand Down

0 comments on commit e686781

Please sign in to comment.