Fixing thinko on sum matcher
This commit is contained in:
parent
39e1140613
commit
76d95369b4
1 changed files with 2 additions and 2 deletions
|
@ -38,9 +38,9 @@ class DejaResults(object):
|
||||||
|
|
||||||
line = line.rstrip()
|
line = line.rstrip()
|
||||||
if not is_racy_file:
|
if not is_racy_file:
|
||||||
m = re.match(sum_matcher, line)
|
|
||||||
# Removing special XFAIL comment added by script.
|
# Removing special XFAIL comment added by script.
|
||||||
m = re.sub (' ##\|##.*', '', m)
|
line = re.sub (' ##\|##.*', '', line)
|
||||||
|
m = re.match(sum_matcher, line)
|
||||||
else:
|
else:
|
||||||
m = re.match (racy_file_matcher, line)
|
m = re.match (racy_file_matcher, line)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue