diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2017-06-07 11:39:38 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-09 17:12:06 +0100 |
commit | 4e3ab36e8c90abc740cce1ba31faf6595116e1e2 (patch) | |
tree | d7e152d842db32203964cc99a96136d78848173b /meta/lib/oeqa | |
parent | d10edb97f0a7d6952adf9e0dbb6b4d5c0d168195 (diff) | |
download | openembedded-core-4e3ab36e8c90abc740cce1ba31faf6595116e1e2.tar.gz openembedded-core-4e3ab36e8c90abc740cce1ba31faf6595116e1e2.tar.bz2 openembedded-core-4e3ab36e8c90abc740cce1ba31faf6595116e1e2.zip |
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]
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/core/context.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/selftest/context.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py index 0dbf5c353e..2d543ffa31 100644 --- a/meta/lib/oeqa/core/context.py +++ b/meta/lib/oeqa/core/context.py @@ -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) diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py index ca73070c0b..8c8439bf28 100644 --- a/meta/lib/oeqa/selftest/context.py +++ b/meta/lib/oeqa/selftest/context.py @@ -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 |