parallel-tests: separate different logs with an empty line
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 5 May 2012 14:33:36 +0000 (16:33 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 5 May 2012 14:34:29 +0000 (16:34 +0200)
commit952d91c054d4e68731a23752afc904f9f9061491
treef99cdab0d659fec102ceda4123a347e59b2fde88
parent5eeb36603d197ed73a031cea70843e9b43d312b9
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>
lib/am/check.am