From 4e3ab36e8c90abc740cce1ba31faf6595116e1e2 Mon Sep 17 00:00:00 2001 From: Aníbal Limón Date: Wed, 7 Jun 2017 11:39:38 -0500 Subject: oeqa: Change the order to logDetails and logSummary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Is better to log the summary at end to see in an easy way the actual result of the test run. [YOCTO #11622] Signed-off-by: Aníbal Limón Signed-off-by: Ross Burton --- meta/classes/testsdk.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/classes/testsdk.bbclass') diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 8a9e680328..6b51a33db2 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass @@ -72,8 +72,8 @@ def testsdk_main(d): component = "%s %s" % (pn, OESDKTestContextExecutor.name) context_msg = "%s:%s" % (os.path.basename(tcname), os.path.basename(sdk_env)) - result.logSummary(component, context_msg) result.logDetails() + result.logSummary(component, context_msg) if not result.wasSuccessful(): fail = True @@ -176,8 +176,8 @@ def testsdkext_main(d): component = "%s %s" % (pn, OESDKExtTestContextExecutor.name) context_msg = "%s:%s" % (os.path.basename(tcname), os.path.basename(sdk_env)) - result.logSummary(component, context_msg) result.logDetails() + result.logSummary(component, context_msg) if not result.wasSuccessful(): fail = True -- cgit 1.2.3-korg