diff --git a/lib/sumfiles.py b/lib/sumfiles.py index 52cded3..3d25bb6 100644 --- a/lib/sumfiles.py +++ b/lib/sumfiles.py @@ -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)