summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-06-19 16:16:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-30 22:34:23 +0100
commitd6bceaab250bc597df6deac9a7c7cd88a879e89f (patch)
tree4739d7bf55588311bc746ca008ce967d92d1244d /meta
parenta60c94d89f9a594ae9ab15611cfa905d70ce188e (diff)
downloadpoky-d6bceaab250bc597df6deac9a7c7cd88a879e89f.tar.gz
oeqa/logparser: ignore test failure commentary
The output format for Python and GLib both can be of this form: FAIL: foobar (Segmentation fault) In this case the test is called foobar not foobar_segmentation_fault. (From OE-Core rev: 95031da4f08295ad81efac1c082c48dd5c330fb0) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/utils/logparser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/logparser.py b/meta/lib/oeqa/utils/logparser.py
index cc6d18d94a..b31214b1c7 100644
--- a/meta/lib/oeqa/utils/logparser.py
+++ b/meta/lib/oeqa/utils/logparser.py
@@ -16,7 +16,7 @@ class PtestParser(object):
16 def parse(self, logfile): 16 def parse(self, logfile):
17 test_regex = {} 17 test_regex = {}
18 test_regex['PASSED'] = re.compile(r"^PASS:(.+)") 18 test_regex['PASSED'] = re.compile(r"^PASS:(.+)")
19 test_regex['FAILED'] = re.compile(r"^FAIL:(.+)") 19 test_regex['FAILED'] = re.compile(r"^FAIL:([^(]+)")
20 test_regex['SKIPPED'] = re.compile(r"^SKIP:(.+)") 20 test_regex['SKIPPED'] = re.compile(r"^SKIP:(.+)")
21 21
22 section_regex = {} 22 section_regex = {}
@@ -69,7 +69,7 @@ class PtestParser(object):
69 if result: 69 if result:
70 if current_section['name'] not in self.results: 70 if current_section['name'] not in self.results:
71 self.results[current_section['name']] = {} 71 self.results[current_section['name']] = {}
72 self.results[current_section['name']][result.group(1)] = t 72 self.results[current_section['name']][result.group(1).strip()] = t
73 73
74 return self.results, self.sections 74 return self.results, self.sections
75 75