Merge with stable
authorChristian Ebert <blacktrash@gmx.net>
Wed, 18 May 2011 23:30:45 +0200
changeset 952 eb6ebe425bf6
parent 950 d93ca857e4bb (current diff)
parent 951 0af8a73dfe14 (diff)
child 954 12a2b9b99beb
Merge with stable
--- a/tests/run-tests.py	Wed May 18 00:44:15 2011 +0200
+++ b/tests/run-tests.py	Wed May 18 23:30:45 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):