diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-09 13:23:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-11 12:14:26 +0000 |
commit | c86e8900e8d6a03f891f2ee317316668184b6886 (patch) | |
tree | 4e0dbb93e1ed432f5029bf3418c228405f2e03b1 /meta/lib | |
parent | 27eaabb35c51e2da22577c331bb8925d5c1e562a (diff) | |
download | poky-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')
-rw-r--r-- | meta/lib/oeqa/core/runner.py | 2 |
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): |