diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-05-05 16:33:36 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-05-05 16:34:29 +0200 |
commit | 952d91c054d4e68731a23752afc904f9f9061491 (patch) | |
tree | f99cdab0d659fec102ceda4123a347e59b2fde88 /lib/am/check.am | |
parent | 5eeb36603d197ed73a031cea70843e9b43d312b9 (diff) | |
download | automake-952d91c054d4e68731a23752afc904f9f9061491.tar.gz |
parallel-tests: separate different logs with an empty line
After commit v1.12-21-g5eeb366 "parallel-tests: optimize global log
creation", the log files copied in the global log are not anymore
separated by a blank line, causing unclear output like this:
FAIL: test1
===========
output from test 1
FAIL: test2
===========
output from test 2
where we would want something like this:
FAIL: test1
===========
output from test 1
FAIL: test2
===========
output from test 2
Fix this regression.
* lib/am/check.am (am__create_global_log): Print an extra empty line
after having displayed the content of a '.log' file.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'lib/am/check.am')
-rw-r--r-- | lib/am/check.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/am/check.am b/lib/am/check.am index a65fef97c..838766a39 100644 --- a/lib/am/check.am +++ b/lib/am/check.am @@ -152,6 +152,7 @@ function rst_section(header) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ + printf "\n"; \ }; \ ## Don't leak open file descriptors, as this could cause serious ## problems when there are many tests (yes, even on Linux). |