diff options
-rw-r--r-- | 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 c1dc86e5db..30b8e47556 100644 --- a/meta/lib/oeqa/buildperf/base.py +++ b/meta/lib/oeqa/buildperf/base.py | |||
@@ -173,7 +173,7 @@ class BuildPerfTestResult(unittest.TextTestResult): | |||
173 | git_tag_rev = self.git_revision | 173 | git_tag_rev = self.git_revision |
174 | 174 | ||
175 | values = ['0'] * 12 | 175 | values = ['0'] * 12 |
176 | for status, test in self.all_results(): | 176 | for status, (test, msg) in self.all_results(): |
177 | if status not in ['SUCCESS', 'FAILURE', 'EXP_SUCCESS']: | 177 | if status not in ['SUCCESS', 'FAILURE', 'EXP_SUCCESS']: |
178 | continue | 178 | continue |
179 | (t_ind, t_len), (s_ind, s_len) = gr_map[test.name] | 179 | (t_ind, t_len), (s_ind, s_len) = gr_map[test.name] |