diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2017-05-26 15:37:31 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-02 13:36:13 +0100 |
commit | c7600278b6c39a311f822b1a7d39339bac3076c2 (patch) | |
tree | 8c738258769af4761101815b23cb3cecb0271aa0 | |
parent | 5507c394e795a13701c6d3e0017e13feea217581 (diff) | |
download | poky-c7600278b6c39a311f822b1a7d39339bac3076c2.tar.gz |
oeqa/core/runner: OETestResult remove unneeded override of startTest
I override this method before for keep track of results and forget
to remove it, now isn't need.
(From OE-Core rev: 63606ffaaac1b84ddcad8a1c1006f8110050e20e)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/core/runner.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/lib/oeqa/core/runner.py b/meta/lib/oeqa/core/runner.py index 40fbf3b423..0b04e8d586 100644 --- a/meta/lib/oeqa/core/runner.py +++ b/meta/lib/oeqa/core/runner.py | |||
@@ -44,9 +44,6 @@ class OETestResult(_TestResult): | |||
44 | self.tc._results['skipped'] = self.skipped | 44 | self.tc._results['skipped'] = self.skipped |
45 | self.tc._results['expectedFailures'] = self.expectedFailures | 45 | self.tc._results['expectedFailures'] = self.expectedFailures |
46 | 46 | ||
47 | def startTest(self, test): | ||
48 | super(OETestResult, self).startTest(test) | ||
49 | |||
50 | class OETestRunner(_TestRunner): | 47 | class OETestRunner(_TestRunner): |
51 | streamLoggerClass = OEStreamLogger | 48 | streamLoggerClass = OEStreamLogger |
52 | 49 | ||