From 68ab9c5283afdfacef9678f696f8a8aafdd8205b Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Wed, 23 May 2018 21:14:34 -0400 Subject: [PATCH] Add UNRESOLVED to the list of possible regressions --- lib/sumfiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sumfiles.py b/lib/sumfiles.py index 6d95fb8..9410257 100644 --- a/lib/sumfiles.py +++ b/lib/sumfiles.py @@ -9,7 +9,7 @@ from collections import OrderedDict import lzma # Helper regex for parse_sum_line. -sum_matcher = re.compile('^(.?(PASS|FAIL)): (.*)$') +sum_matcher = re.compile('^(.?(PASS|FAIL|UNRESOLVED)): (.*)$') racy_file_matcher = re.compile ('^(gdb\..*)') # You must call set_web_base at startup to set this.