Skip to content

Commit

Permalink
Merge pull request #1166 from stmuk/nom
Browse files Browse the repository at this point in the history
dogbert17++ fix harness6 by only allowing TEST_JOBS=1
  • Loading branch information
lizmat committed Sep 20, 2017
2 parents b66f5e1 + 06fe4c4 commit 78a4824
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion t/harness6
Expand Up @@ -26,7 +26,7 @@ multi sub MAIN(
Str :$tests-from-file = Str,
Bool :$fudge = False,
Int :$verbosity = (%*ENV<TEST_VERBOSE> // 0).Int,
Int :$jobs = (%*ENV<TEST_JOBS> // 6).Int,
Int :$jobs = (%*ENV<TEST_JOBS> // 1).Int,
Bool :$quick = False,
Bool :$stress = False,
Bool :$randomize = False,
Expand All @@ -35,6 +35,7 @@ multi sub MAIN(
Str :$perl5path = 'perl',
*@files,
) {
die "TEST_JOBS > 1 is currently broken" if %*ENV<TEST_JOBS> and %*ENV<TEST_JOBS> > 1;
my @slow;
with ($tests-from-file) {
my $inline-perl5-is-installed = run(
Expand Down

0 comments on commit 78a4824

Please sign in to comment.