##// END OF EJS Templates
run-tests: set HGPLAIN=1 when bisecting...
Jun Wu -
r34805:149109c9 default
parent child Browse files
Show More
@@ -2104,8 +2104,10 b' class TextTestRunner(unittest.TextTestRu'
2104 if bisectrepo:
2104 if bisectrepo:
2105 bisectcmd.extend(['-R', os.path.abspath(bisectrepo)])
2105 bisectcmd.extend(['-R', os.path.abspath(bisectrepo)])
2106 def pread(args):
2106 def pread(args):
2107 env = os.environ.copy()
2108 env['HGPLAIN'] = '1'
2107 p = subprocess.Popen(args, stderr=subprocess.STDOUT,
2109 p = subprocess.Popen(args, stderr=subprocess.STDOUT,
2108 stdout=subprocess.PIPE)
2110 stdout=subprocess.PIPE, env=env)
2109 data = p.stdout.read()
2111 data = p.stdout.read()
2110 p.wait()
2112 p.wait()
2111 return data
2113 return data
General Comments 0
You need to be logged in to leave comments. Login now