summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/core')
-rw-r--r--meta/lib/oeqa/core/context.py2
1 files changed, 1 insertions, 1 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):
158 else: 158 else:
159 self._pre_run() 159 self._pre_run()
160 rc = self.tc.runTests(**self.tc_kwargs['run']) 160 rc = self.tc.runTests(**self.tc_kwargs['run'])
161 rc.logSummary(self.name)
162 rc.logDetails() 161 rc.logDetails()
162 rc.logSummary(self.name)
163 163
164 output_link = os.path.join(os.path.dirname(args.output_log), 164 output_link = os.path.join(os.path.dirname(args.output_log),
165 "%s-results.log" % self.name) 165 "%s-results.log" % self.name)