mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
oeqa/core/runner: OETestResult add internal _tc_map_results
This method is to assign results into the TestContext, create an internal one to support change implementation in Thread version. [YOCTO #11450] (From OE-Core rev: 8a6a9cb816d78e4cf71b79c35b579918d31053f2) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ce422c7008
commit
aeb8c9341b
@@ -39,7 +39,9 @@ class OETestResult(_TestResult):
|
||||
super(OETestResult, self).__init__(*args, **kwargs)
|
||||
|
||||
self.tc = tc
|
||||
self._tc_map_results()
|
||||
|
||||
def _tc_map_results(self):
|
||||
self.tc._results['failures'] = self.failures
|
||||
self.tc._results['errors'] = self.errors
|
||||
self.tc._results['skipped'] = self.skipped
|
||||
|
||||
Reference in New Issue
Block a user