[OE-core] [PATCH 2/2] oeqa.buildperf: fix crash when creating globalres.log

Markus Lehtonen markus.lehtonen at linux.intel.com
Fri Aug 19 13:01:34 UTC 2016


Fix a bug that was introduced when converting to unittest framework.

Signed-off-by: Markus Lehtonen <markus.lehtonen at linux.intel.com>
---
 meta/lib/oeqa/buildperf/base.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py
index c1dc86e..30b8e47 100644
--- a/meta/lib/oeqa/buildperf/base.py
+++ b/meta/lib/oeqa/buildperf/base.py
@@ -173,7 +173,7 @@ class BuildPerfTestResult(unittest.TextTestResult):
             git_tag_rev = self.git_revision
 
         values = ['0'] * 12
-        for status, test in self.all_results():
+        for status, (test, msg) in self.all_results():
             if status not in ['SUCCESS', 'FAILURE', 'EXP_SUCCESS']:
                 continue
             (t_ind, t_len), (s_ind, s_len) = gr_map[test.name]
-- 
2.6.6




More information about the Openembedded-core mailing list