diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-10-20 15:40:42 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-10-20 15:40:42 +0100 |
commit | eb04cefdc4b758677dd762eb1e8480c8b41ea3e5 (patch) | |
tree | da41b3ff8de335329831f06612c7ac8087a21b71 /test/runtest | |
parent | 85da41af516f0c5089501214534980fd4b176a11 (diff) |
Testsuite: dump stdout for a force-continue
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/runtest b/test/runtest index bdfe32b08..71ee0f68e 100755 --- a/test/runtest +++ b/test/runtest @@ -3932,8 +3932,12 @@ foreach $test (@test_list) } if ($force_continue) { - print "\nstderr tail:\n"; + print "\nstdout tail:\n"; + print "==================>\n"; + system("tail -20 test-stdout"); print "===================\n"; + print "stderr tail:\n"; + print "==================>\n"; system("tail -20 test-stderr"); print "===================\n"; print "... continue forced\n"; |