diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-14 14:50:48 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-16 13:21:35 +0100 |
commit | 6b219f64c403361926a464925f0a32b2b3d27ffc (patch) | |
tree | 535e1d443737f3fc94cbbd1ec0c48806d3e23c5f /meta/lib/oeqa/selftest/cases/runqemu.py | |
parent | eacc12c2ec6d778c70f91f8c754f64c6c097f35a (diff) | |
download | poky-6b219f64c403361926a464925f0a32b2b3d27ffc.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: 978548c0abde2cb94c2782538552f39bdf2bf630)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/runqemu.py')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/runqemu.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runqemu.py b/meta/lib/oeqa/selftest/cases/runqemu.py index 5ebdd57a41..e57f503a57 100644 --- a/meta/lib/oeqa/selftest/cases/runqemu.py +++ b/meta/lib/oeqa/selftest/cases/runqemu.py | |||
@@ -14,8 +14,6 @@ class RunqemuTests(OESelftestTestCase): | |||
14 | 14 | ||
15 | image_is_ready = False | 15 | image_is_ready = False |
16 | deploy_dir_image = '' | 16 | deploy_dir_image = '' |
17 | # We only want to print runqemu stdout/stderr if there is a test case failure | ||
18 | buffer = True | ||
19 | 17 | ||
20 | def setUpLocal(self): | 18 | def setUpLocal(self): |
21 | super(RunqemuTests, self).setUpLocal() | 19 | super(RunqemuTests, self).setUpLocal() |