##// END OF EJS Templates
run-tests: print a newline after all warnings
Thomas Arendsen Hein -
r14359:ad5c68a0 default
parent child Browse files
Show More
@@ -182,7 +182,7 b' def parseargs():'
182 182 os.access(options.with_hg, os.X_OK)):
183 183 parser.error('--with-hg must specify an executable hg script')
184 184 if not os.path.basename(options.with_hg) == 'hg':
185 sys.stderr.write('warning: --with-hg should specify an hg script')
185 sys.stderr.write('warning: --with-hg should specify an hg script\n')
186 186 if options.local:
187 187 testdir = os.path.dirname(os.path.realpath(sys.argv[0]))
188 188 hgbin = os.path.join(os.path.dirname(testdir), 'hg')
@@ -241,7 +241,7 b' def parseargs():'
241 241 options.timeout = 0
242 242 if options.timeout and not hasattr(subprocess.Popen, 'terminate'):
243 243 sys.stderr.write('warning: timeout is not supported on this '
244 'platform and will be ignored')
244 'platform and will be ignored\n')
245 245 options.timeout = 0
246 246 if options.py3k_warnings:
247 247 if sys.version_info[:2] < (2, 6) or sys.version_info[:2] >= (3, 0):
General Comments 0
You need to be logged in to leave comments. Login now