##// END OF EJS Templates
run-tests: show PID if running in parallel mode with -v....
Greg Ward -
r8671:a434c94b default
parent child Browse files
Show More
@@ -96,7 +96,13 b' def parseargs():'
96 96 options.annotate)
97 97
98 98 if options.verbose:
99 if options.jobs > 1 or options.child is not None:
100 pid = "[%d]" % os.getpid()
101 else:
102 pid = None
99 103 def vlog(*msg):
104 if pid:
105 print pid,
100 106 for m in msg:
101 107 print m,
102 108 print
@@ -178,8 +184,7 b' def checktools():'
178 184
179 185 def cleanup(options):
180 186 if not options.keep_tmpdir:
181 if options.verbose:
182 print "# Cleaning up HGTMP", HGTMP
187 vlog("# Cleaning up HGTMP", HGTMP)
183 188 shutil.rmtree(HGTMP, True)
184 189
185 190 def usecorrectpython():
General Comments 0
You need to be logged in to leave comments. Login now