mirror of
https://git.yoctoproject.org/poky
synced 2026-09-16 00:49:32 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
78568b3a37
commit
e9a6fd9e97
@@ -158,8 +158,8 @@ class OETestContextExecutor(object):
|
||||
else:
|
||||
self._pre_run()
|
||||
rc = self.tc.runTests(**self.tc_kwargs['run'])
|
||||
rc.logSummary(self.name)
|
||||
rc.logDetails()
|
||||
rc.logSummary(self.name)
|
||||
|
||||
output_link = os.path.join(os.path.dirname(args.output_log),
|
||||
"%s-results.log" % self.name)
|
||||
|
||||
@@ -179,8 +179,8 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
|
||||
else:
|
||||
self._pre_run()
|
||||
rc = self.tc.runTests(**self.tc_kwargs['run'])
|
||||
rc.logSummary(self.name)
|
||||
rc.logDetails()
|
||||
rc.logSummary(self.name)
|
||||
|
||||
return rc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user