Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[t/harness] honour TEST_JOBS environment variable
  • Loading branch information
moritz committed Jun 22, 2009
1 parent 0677565 commit 10f2235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/harness
Expand Up @@ -58,7 +58,7 @@ if (eval { require TAP::Harness; 1 }) {
my %harness_options = (
exec => ['./perl6'],
verbosity => 0+$Test::Harness::verbose,
jobs => $jobs || 1,
jobs => $ENV{TEST_JOBS} || $jobs || 1,
);
TAP::Harness->new( \%harness_options )->runtests(@tfiles);
}
Expand Down

0 comments on commit 10f2235

Please sign in to comment.