##// END OF EJS Templates
run-tests: don't append rtendtracing logs if pipe is /dev/null...
Pulkit Goyal -
r39324:a235ee4c default
parent child Browse files
Show More
@@ -1389,7 +1389,8 b' class TTest(Test):'
1389 if os.getenv('MSYSTEM'):
1389 if os.getenv('MSYSTEM'):
1390 script.append(b'alias pwd="pwd -W"\n')
1390 script.append(b'alias pwd="pwd -W"\n')
1391
1391
1392 if os.getenv('HGCATAPULTSERVERPIPE'):
1392 hgcatapult = os.getenv('HGCATAPULTSERVERPIPE')
1393 if hgcatapult and hgcatapult != '/dev/null':
1393 # Kludge: use a while loop to keep the pipe from getting
1394 # Kludge: use a while loop to keep the pipe from getting
1394 # closed by our echo commands. The still-running file gets
1395 # closed by our echo commands. The still-running file gets
1395 # reaped at the end of the script, which causes the while
1396 # reaped at the end of the script, which causes the while
General Comments 0
You need to be logged in to leave comments. Login now