summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/runner.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-07-14 14:50:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-04-25 15:01:21 +0100
commit9a8d6d9fd200fdbd27dce63d6337e8d1fce49533 (patch)
tree044a3d87decf6df05c971b7261f564bd321c262a /meta/lib/oeqa/core/runner.py
parent65681147b2339d119a9e2f864103ea83b544daa3 (diff)
downloadpoky-9a8d6d9fd200fdbd27dce63d6337e8d1fce49533.tar.gz
oeqa: Default to buffer mode for tests
Currently some tests run in buffer mode and some don't. Those that don't can corrupt stdout/stderr. Switch to using buffer mode everywhere so we're consistent. If there is useful output on stdout/stderr, it will be displayed if the test fails. (From OE-Core rev: 85c1b6fb516aae58240330a0aca659bfafcd3883) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/core/runner.py')
-rw-r--r--meta/lib/oeqa/core/runner.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/lib/oeqa/core/runner.py b/meta/lib/oeqa/core/runner.py
index f8bb23f344..0e6d215db1 100644
--- a/meta/lib/oeqa/core/runner.py
+++ b/meta/lib/oeqa/core/runner.py
@@ -43,11 +43,6 @@ class OETestResult(_TestResult):
43 self.tc = tc 43 self.tc = tc
44 44
45 def startTest(self, test): 45 def startTest(self, test):
46 # Allow us to trigger the testcase buffer mode on a per test basis
47 # so stdout/stderr are only printed upon failure. Enables debugging
48 # but clean output
49 if hasattr(test, "buffer"):
50 self.buffer = test.buffer
51 super(OETestResult, self).startTest(test) 46 super(OETestResult, self).startTest(test)
52 47
53 def logSummary(self, component, context_msg=''): 48 def logSummary(self, component, context_msg=''):