[gnome-continuous-yocto/gnomeostree-3.28-rocko: 2187/8267] oeqa.buildperf: fix checking of invalid results
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-continuous-yocto/gnomeostree-3.28-rocko: 2187/8267] oeqa.buildperf: fix checking of invalid results
- Date: Sat, 16 Dec 2017 22:52:41 +0000 (UTC)
commit 6722b0412c60d21fc988a671f4d9583bf6f06801
Author: Markus Lehtonen <markus lehtonen linux intel com>
Date: Fri Aug 26 10:33:08 2016 +0300
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>
meta/lib/oeqa/buildperf/base.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py
index 97be58f..e4a7948 100644
--- a/meta/lib/oeqa/buildperf/base.py
+++ b/meta/lib/oeqa/buildperf/base.py
@@ -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:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]