summaryrefslogtreecommitdiffstats
path: root/meta/classes/testsdk.bbclass
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2017-06-07 11:39:38 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-09 17:12:15 +0100
commite9a6fd9e9779757773a172475d9725823dd3d5ff (patch)
tree3591e9f502360efc05f6c48e2110bfd94e89b2bd /meta/classes/testsdk.bbclass
parent78568b3a377f7a981fa32162370341556b1c4940 (diff)
downloadopenembedded-core-contrib-e9a6fd9e9779757773a172475d9725823dd3d5ff.tar.gz
oeqa: Change the order to logDetails and logSummary
Is better to log the summary at end to see in an easy way the actual result of the test run. [YOCTO #11622] (From OE-Core rev: 4e3ab36e8c90abc740cce1ba31faf6595116e1e2) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/testsdk.bbclass')
-rw-r--r--meta/classes/testsdk.bbclass4
1 files changed, 2 insertions, 2 deletions
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