# HG changeset patch # User Mads Kiilerich # Date 1288999904 -3600 # Node ID e1a5259b3d03e1fb60a133d56036f6e30f90db0d # Parent eca16536349a09ed70cbb95ca1c0e10cfcf26056 tests: handle .t files without trailing LF 9a2de8dae27b made this simple test-test.t succeed silently: $ printf ' $ true' > test-test.t but did not give a usable .err in this case: $ printf ' $ false' > test-test.t The missing LF will now be fixed in the test output and it will thus give a test failure and a solution in the .err file. [ original upstream message ] diff -r eca16536349a -r e1a5259b3d03 tests/run-tests.py --- a/tests/run-tests.py Fri Nov 05 10:01:23 2010 +0000 +++ b/tests/run-tests.py Sat Nov 06 00:31:44 2010 +0100 @@ -464,6 +464,8 @@ after = {} expected = {} for n, l in enumerate(t): + if not l.endswith('\n'): + l += '\n' if l.startswith(' $ '): # commands after.setdefault(pos, []).append(l) prepos = pos @@ -480,8 +482,6 @@ # non-command/result - queue up for merged output after.setdefault(pos, []).append(l) - if script and not script[-1].endswith('\n'): - script[-1] = script[-1] + '\n' script.append('echo %s %s $?\n' % (salt, n + 1)) fd, name = tempfile.mkstemp(suffix='hg-tst')