From: Richard Purdie Date: Thu, 9 Nov 2017 13:23:04 +0000 (+0000) Subject: oeqa/runner: Pass the value of buffer, don't force to True X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5b4b7bfe33630d73b5b53fc754cd45563fcbfd4d;p=openembedded-core.git 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 Signed-off-by: Armin Kuster --- 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):