summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/buildperf/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/buildperf/base.py')
-rw-r--r--meta/lib/oeqa/buildperf/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py
index 97be58f0a1..e4a79486f2 100644
--- a/meta/lib/oeqa/buildperf/base.py
+++ b/meta/lib/oeqa/buildperf/base.py
@@ -175,7 +175,7 @@ class BuildPerfTestResult(unittest.TextTestResult):
175 175
176 values = ['0'] * 12 176 values = ['0'] * 12
177 for status, (test, msg) in self.all_results(): 177 for status, (test, msg) in self.all_results():
178 if status not in ['SUCCESS', 'FAILURE', 'EXP_SUCCESS']: 178 if status in ['ERROR', 'SKIPPED']:
179 continue 179 continue
180 (t_ind, t_len), (s_ind, s_len) = gr_map[test.name] 180 (t_ind, t_len), (s_ind, s_len) = gr_map[test.name]
181 if t_ind is not None: 181 if t_ind is not None: