]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa.buildperf: show skipped tests in results, too
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Mon, 29 Aug 2016 19:48:29 +0000 (22:48 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 3 Sep 2016 08:58:30 +0000 (09:58 +0100)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/buildperf/base.py

index c71622005f6809572a530404b0476ef85f0d3aeb..49da8f6161fdcd9b94281ac56f24100d5139e5f7 100644 (file)
@@ -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)