diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-08-26 10:33:08 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-03 09:58:29 +0100 |
commit | 3efbd49fd80d2b349a8fd44dbcd509168dbc1061 (patch) | |
tree | 5021633b44400c4a2dbd385fe70182aaa0c7bf5b /meta | |
parent | 408b1f1879e4b90c90f6d139b08d2b6f8e555655 (diff) | |
download | openembedded-core-3efbd49fd80d2b349a8fd44dbcd509168dbc1061.tar.gz openembedded-core-3efbd49fd80d2b349a8fd44dbcd509168dbc1061.tar.bz2 openembedded-core-3efbd49fd80d2b349a8fd44dbcd509168dbc1061.zip |
oeqa.buildperf: fix checking of invalid results
The test status check done when writing globalres log was incorrect.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 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): 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: |