[oe-commits] [openembedded-core] 61/86: oeqa.buildperf: show skipped tests in results, too

git at git.openembedded.org git at git.openembedded.org
Tue Aug 30 16:19:08 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 8c172330c48627f902fe34353abccff143a65ae4
Author: Markus Lehtonen <markus.lehtonen at linux.intel.com>
AuthorDate: Mon Aug 29 22:48:29 2016 +0300

    oeqa.buildperf: show skipped tests in results, too
    
    Signed-off-by: Markus Lehtonen <markus.lehtonen at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/buildperf/base.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py
index c716220..49da8f6 100644
--- a/meta/lib/oeqa/buildperf/base.py
+++ b/meta/lib/oeqa/buildperf/base.py
@@ -161,7 +161,8 @@ class BuildPerfTestResult(unittest.TextTestResult):
                       'FAIL': self.failures,
                       'ERROR': self.errors,
                       'EXP_FAIL': self.expectedFailures,
-                      'UNEXP_SUCCESS': self.unexpectedSuccesses}
+                      'UNEXP_SUCCESS': self.unexpectedSuccesses,
+                      'SKIPPED': self.skipped}
         for status, tests in result_map.items():
             for test in tests:
                 yield (status, test)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list