Skip to content

Commit

Permalink
Fix needless buffering when running prove with -j
Browse files Browse the repository at this point in the history
See RT #132108
  • Loading branch information
AlexDaniel committed Sep 17, 2017
1 parent b76f7cc commit d3f542d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Test.pm6
Expand Up @@ -39,6 +39,8 @@ my int $done_testing_has_been_run = 0;
_init_vars();

sub _init_io {
nqp::setbuffersizefh(nqp::getstdin(), 0);
nqp::setbuffersizefh(nqp::getstdout(), 0);
$output = $PROCESS::OUT;
$failure_output = $PROCESS::ERR;
$todo_output = $PROCESS::OUT;
Expand Down

0 comments on commit d3f542d

Please sign in to comment.