run-tests: print a newline after all warnings
authorThomas Arendsen Hein <thomas@intevation.de>
Wed, 18 May 2011 15:45:57 +0200
changeset 14359 ad5c68a0db6a
parent 14358 bf93e78f2638
child 14361 ea7081645987
run-tests: print a newline after all warnings
tests/run-tests.py
--- a/tests/run-tests.py	Wed May 18 15:41:03 2011 +0200
+++ b/tests/run-tests.py	Wed May 18 15:45:57 2011 +0200
@@ -182,7 +182,7 @@
                 os.access(options.with_hg, os.X_OK)):
             parser.error('--with-hg must specify an executable hg script')
         if not os.path.basename(options.with_hg) == 'hg':
-            sys.stderr.write('warning: --with-hg should specify an hg script')
+            sys.stderr.write('warning: --with-hg should specify an hg script\n')
     if options.local:
         testdir = os.path.dirname(os.path.realpath(sys.argv[0]))
         hgbin = os.path.join(os.path.dirname(testdir), 'hg')
@@ -241,7 +241,7 @@
         options.timeout = 0
     if options.timeout and not hasattr(subprocess.Popen, 'terminate'):
         sys.stderr.write('warning: timeout is not supported on this '
-                         'platform and will be ignored')
+                         'platform and will be ignored\n')
         options.timeout = 0
     if options.py3k_warnings:
         if sys.version_info[:2] < (2, 6) or sys.version_info[:2] >= (3, 0):