Taking care of special marker on XFAIL files

This commit is contained in:
Sergio Durigan Junior 2016-05-17 18:48:08 -04:00
parent 724b822e65
commit 6a76af10b0

View file

@ -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)