Change 34176 by [EMAIL PROTECTED] on 2008/08/07 07:45:31

        Run t/uni/*.t t/mro/*.t t/lib/*.t fully in parallel.

Affected files ...

... //depot/perl/t/harness#47 edit

Differences ...

==== //depot/perl/t/harness#47 (text) ====
Index: perl/t/harness
--- perl/t/harness#46~34174~    2008-08-06 10:51:10.000000000 -0700
+++ perl/t/harness      2008-08-07 00:45:31.000000000 -0700
@@ -137,10 +137,13 @@
        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;
End of Patch.

Reply via email to