From: Markus Lehtonen Date: Mon, 29 Aug 2016 19:48:29 +0000 (+0300) Subject: oeqa.buildperf: show skipped tests in results, too X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4954ba519d57aa8271b7b43de8171fe9a23d66f3;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 c71622005f6..49da8f6161f 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)