mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00
oeqa.buildperf: fix checking of invalid results
The test status check done when writing globalres log was incorrect. (From OE-Core rev: 3efbd49fd80d2b349a8fd44dbcd509168dbc1061) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
40d8bef683
commit
6722b0412c
|
@ -175,7 +175,7 @@ class BuildPerfTestResult(unittest.TextTestResult):
|
|||
|
||||
values = ['0'] * 12
|
||||
for status, (test, msg) in self.all_results():
|
||||
if status not in ['SUCCESS', 'FAILURE', 'EXP_SUCCESS']:
|
||||
if status in ['ERROR', 'SKIPPED']:
|
||||
continue
|
||||
(t_ind, t_len), (s_ind, s_len) = gr_map[test.name]
|
||||
if t_ind is not None:
|
||||
|
|
Loading…
Reference in New Issue
Block a user