From: Markus Lehtonen Date: Mon, 29 Aug 2016 19:48:29 +0000 (+0300) Subject: oeqa.buildperf: show skipped tests in results, too X-Git-Tag: uninative-1.4~349 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4112779f9f314148b475fc4b8e33146de8be6b27;p=openembedded-core.git oeqa.buildperf: show skipped tests in results, too Signed-off-by: Markus Lehtonen Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py index c71622005f..49da8f6161 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)