##// END OF EJS Templates
tests: make HGCATAPULTSERVERPIPE imply HGTESTCATAPULTSERVERPIPE...
Kyle Lippincott -
r41234:4f0ae5c6 default
parent child Browse files
Show More
@@ -1409,7 +1409,8 b' class TTest(Test):'
1409 1409 session = str(uuid.uuid4())
1410 1410 if PYTHON3:
1411 1411 session = session.encode('ascii')
1412 hgcatapult = os.getenv('HGTESTCATAPULTSERVERPIPE')
1412 hgcatapult = os.getenv('HGTESTCATAPULTSERVERPIPE') or \
1413 os.getenv('HGCATAPULTSERVERPIPE')
1413 1414 def toggletrace(cmd=None):
1414 1415 if not hgcatapult or hgcatapult == os.devnull:
1415 1416 return
General Comments 0
You need to be logged in to leave comments. Login now