$ENV{TEST_JOBS} vs $ENV{HARNESS_OPTIONS}
authorBram <perl-rt@wizbit.be>
Tue, 12 Aug 2008 20:50:47 +0000 (22:50 +0200)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Sun, 7 Sep 2008 22:10:58 +0000 (22:10 +0000)
Message-ID: <20080812205047.05lrnmbqlccs08g8@horde.wizbit.be>

p4raw-id: //depot/perl@34314

t/harness

index 8a4e9b4..e6e8d9e 100644 (file)
--- a/t/harness
+++ b/t/harness
@@ -101,7 +101,23 @@ if ($ARGV[0] && $ARGV[0]=~/^-re/) {
 }
 
 my $jobs = $ENV{TEST_JOBS};
-my ($rules, $state);
+my ($fork, $rules, $state);
+if ($ENV{HARNESS_OPTIONS}) {
+    for my $opt ( split /:/, $ENV{HARNESS_OPTIONS} ) {
+        if ( $opt =~ /^j(\d*)$/ ) {
+            $jobs ||= $1 || 9;
+        }
+        elsif ( $opt eq 'f' ) {
+            $fork = 1;
+        }
+        elsif ( $opt eq 'c' ) {
+#            $args->{color} = 1;
+        }
+        else {
+            die "Unknown HARNESS_OPTIONS item: $opt\n";
+        }
+    }
+}
 
 if (@ARGV) {
     # If you want these run in speed order, just use prove
@@ -210,7 +226,10 @@ if ($^O eq 'MSWin32') {
 
 if ($jobs) {
     eval 'use TAP::Harness 3.13; 1' or die $@;
-    my $h = TAP::Harness->new({ jobs => $jobs, rules => $rules});
+
+    # Test::Harness parses $ENV{HARNESS_OPTIONS}, TAP::Harness does not
+    local $ENV{HARNESS_OPTIONS};
+    my $h = TAP::Harness->new({ jobs => $jobs, rules => $rules, ($fork ? (fork => $fork) : ())});
     if ($state) {
        $h->callback(
                     after_test => sub {