summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-09 13:23:04 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-11 12:14:26 +0000
commitc86e8900e8d6a03f891f2ee317316668184b6886 (patch)
tree4e0dbb93e1ed432f5029bf3418c228405f2e03b1 /meta/lib/oeqa/core
parent27eaabb35c51e2da22577c331bb8925d5c1e562a (diff)
downloadpoky-c86e8900e8d6a03f891f2ee317316668184b6886.tar.gz
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>
Diffstat (limited to 'meta/lib/oeqa/core')
-rw-r--r--meta/lib/oeqa/core/runner.py2
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):
50 # so stdout/stderr are only printed upon failure. Enables debugging 50 # so stdout/stderr are only printed upon failure. Enables debugging
51 # but clean output 51 # but clean output
52 if hasattr(test, "buffer"): 52 if hasattr(test, "buffer"):
53 self.buffer = True 53 self.buffer = test.buffer
54 super(OETestResult, self).startTest(test) 54 super(OETestResult, self).startTest(test)
55 55
56 def _tc_map_results(self): 56 def _tc_map_results(self):