Fixing thinko on sum matcher

This commit is contained in:
Sergio Durigan Junior 2016-05-19 14:09:52 -04:00
parent 39e1140613
commit 76d95369b4

View file

@ -38,9 +38,9 @@ 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)
line = re.sub (' ##\|##.*', '', line)
m = re.match(sum_matcher, line)
else:
m = re.match (racy_file_matcher, line)