diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-09 13:23:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-10 14:44:31 +0000 |
commit | d0a3379bbcbcd8153bd59ccdb56d40fff7ad6c6b (patch) | |
tree | 72014e4131c8b94ff7024d95ae4cc0006b8b83db /meta | |
parent | efa064d5026538ab513edc11869364ce2f14b977 (diff) | |
download | openembedded-core-d0a3379bbcbcd8153bd59ccdb56d40fff7ad6c6b.tar.gz openembedded-core-d0a3379bbcbcd8153bd59ccdb56d40fff7ad6c6b.tar.bz2 openembedded-core-d0a3379bbcbcd8153bd59ccdb56d40fff7ad6c6b.zip |
oeqa/runner: Pass the value of buffer, don't force to True
The value could be False in which case we should pass that through.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/core/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/core/runner.py b/meta/lib/oeqa/core/runner.py index 2d756da6d0..13cdf5ba52 100644 --- a/meta/lib/oeqa/core/runner.py +++ b/meta/lib/oeqa/core/runner.py @@ -50,7 +50,7 @@ class OETestResult(_TestResult): # so stdout/stderr are only printed upon failure. Enables debugging # but clean output if hasattr(test, "buffer"): - self.buffer = True + self.buffer = test.buffer super(OETestResult, self).startTest(test) def _tc_map_results(self): |