mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00
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. (From OE-Core rev: d0a3379bbcbcd8153bd59ccdb56d40fff7ad6c6b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
27eaabb35c
commit
c86e8900e8
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue
Block a user