Skip to content
Snippets Groups Projects
Commit ab1a9527 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

run-tests: move parsehghaveoutput() into TTest

This patch starts a sequence of patches that will try to isolate
everything related to t tests into the TTest class.
parent f7ac3c63
No related branches found
No related tags found
No related merge requests found
......@@ -283,23 +283,6 @@
shutil.copy(src, dst)
os.remove(src)
def parsehghaveoutput(lines):
'''Parse hghave log lines.
Return tuple of lists (missing, failed):
* the missing/unknown features
* the features for which existence check failed'''
missing = []
failed = []
for line in lines:
if line.startswith(SKIPPED_PREFIX):
line = line.splitlines()[0]
missing.append(line[len(SKIPPED_PREFIX):])
elif line.startswith(FAILED_PREFIX):
line = line.splitlines()[0]
failed.append(line[len(FAILED_PREFIX):])
return missing, failed
def showdiff(expected, output, ref, err):
print
servefail = False
......@@ -472,7 +455,7 @@
missing = ['unknown']
failed = None
else:
missing, failed = parsehghaveoutput(out)
missing, failed = TTest.parsehghaveoutput(out)
if not missing:
missing = ['irrelevant']
......@@ -908,6 +891,25 @@
return '+glob'
return False
@staticmethod
def parsehghaveoutput(lines):
'''Parse hghave log lines.
Return tuple of lists (missing, failed):
* the missing/unknown features
* the features for which existence check failed'''
missing = []
failed = []
for line in lines:
if line.startswith(SKIPPED_PREFIX):
line = line.splitlines()[0]
missing.append(line[len(SKIPPED_PREFIX):])
elif line.startswith(FAILED_PREFIX):
line = line.splitlines()[0]
failed.append(line[len(FAILED_PREFIX):])
return missing, failed
wifexited = getattr(os, "WIFEXITED", lambda x: False)
def run(cmd, wd, options, replacements, env, abort):
"""Run command in a sub-process, capturing the output (stdout and stderr).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment