diff options
Diffstat (limited to 'meta/lib')
-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): | |||
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) |
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): | |||
179 | else: | 179 | else: |
180 | self._pre_run() | 180 | self._pre_run() |
181 | rc = self.tc.runTests(**self.tc_kwargs['run']) | 181 | rc = self.tc.runTests(**self.tc_kwargs['run']) |
182 | rc.logSummary(self.name) | ||
183 | rc.logDetails() | 182 | rc.logDetails() |
183 | rc.logSummary(self.name) | ||
184 | 184 | ||
185 | return rc | 185 | return rc |
186 | 186 | ||