diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-09 13:23:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-04 17:23:58 +0000 |
commit | 99c18e36e260ef54b8c02c297712284ddaa73dec (patch) | |
tree | 1f93422742e57bef737dd6efdaf44c6c6bf97b14 /meta/lib | |
parent | fbddd3917f817acde499acb8ba385a7ca92260ae (diff) | |
download | poky-99c18e36e260ef54b8c02c297712284ddaa73dec.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: 5b4b7bfe33630d73b5b53fc754cd45563fcbfd4d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster@mvista.com>
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): |