Taking care of special marker on XFAIL files
This commit is contained in:
parent
724b822e65
commit
6a76af10b0
1 changed files with 2 additions and 0 deletions
|
@ -39,6 +39,8 @@ class DejaResults(object):
|
|||
line = line.rstrip()
|
||||
if not is_racy_file:
|
||||
m = re.match(sum_matcher, line)
|
||||
# Removing special XFAIL comment added by script.
|
||||
m = re.sub (' ##\|##.*', '', m)
|
||||
else:
|
||||
m = re.match (racy_file_matcher, line)
|
||||
|
||||
|
|
Loading…
Reference in a new issue