[oe-commits] [openembedded-core] 79/122: oeqa/runner: Pass the value of buffer, don't force to True

git at git.openembedded.org git at git.openembedded.org
Mon Dec 4 17:25:57 UTC 2017


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

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

commit 5b4b7bfe33630d73b5b53fc754cd45563fcbfd4d
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>
    Signed-off-by: Armin Kuster <akuster at mvista.com>
---
 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