[oe-commits] [openembedded-core] branch master-next updated: oeqa/runner: Pass the value of buffer, don't force to True

git at git.openembedded.org git at git.openembedded.org
Thu Nov 9 13:24:18 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

The following commit(s) were added to refs/heads/master-next by this push:
     new b096589  oeqa/runner: Pass the value of buffer, don't force to True
b096589 is described below

commit b0965896677daa5aa60d6e998f4a3b572ae79593
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Nov 9 13:23:04 2017 +0000

    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 at linuxfoundation.org>
---
 meta/lib/oeqa/core/runner.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/core/runner.py b/meta/lib/oeqa/core/runner.py
index 2d756da..13cdf5b 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):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list