diff options
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/utils/logparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/logparser.py b/meta/lib/oeqa/utils/logparser.py index 5403721073..60e16d500e 100644 --- a/meta/lib/oeqa/utils/logparser.py +++ b/meta/lib/oeqa/utils/logparser.py | |||
@@ -26,7 +26,7 @@ class PtestParser(object): | |||
26 | section_regex['timeout'] = re.compile(r"^TIMEOUT: .*/(.+)/ptest") | 26 | section_regex['timeout'] = re.compile(r"^TIMEOUT: .*/(.+)/ptest") |
27 | 27 | ||
28 | # Cache markers so we don't take the re.search() hit all the time. | 28 | # Cache markers so we don't take the re.search() hit all the time. |
29 | markers = ("PASSED", "FAILED", "SKIPPED", "BEGIN:", "END:", "DURATION:", "ERROR: Exit", "TIMEOUT:") | 29 | markers = ("PASS:", "FAIL:", "SKIP:", "BEGIN:", "END:", "DURATION:", "ERROR: Exit", "TIMEOUT:") |
30 | 30 | ||
31 | def newsection(): | 31 | def newsection(): |
32 | return { 'name': "No-section", 'log': [] } | 32 | return { 'name': "No-section", 'log': [] } |