diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-15 18:55:36 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-02-05 16:50:16 +0100 |
commit | 2a11ee1019530a917fff43182a1ef19a0d701018 (patch) | |
tree | c677dafc5f8c20a88c08b8a90f348c0311e8a026 /scripts/tap-merge.pl | |
parent | bae6b59d46f9cb5e8a4f4cc07c5b2528b198b06b (diff) |
tap: flush STDOUT on newline
This makes it easier to follow what is going on.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts/tap-merge.pl')
-rwxr-xr-x | scripts/tap-merge.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/tap-merge.pl b/scripts/tap-merge.pl index 59e3fa5007..10ccf57bb2 100755 --- a/scripts/tap-merge.pl +++ b/scripts/tap-merge.pl @@ -53,6 +53,7 @@ sub main () my $testno = 0; # Number of test results seen so far. my $bailed_out = 0; # Whether a "Bail out!" directive has been seen. + STDOUT->autoflush(1); while (defined (my $cur = $parser->next)) { if ($cur->is_bailout) |