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-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~19590 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0a3379bbcbcd8153bd59ccdb56d40fff7ad6c6b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 --- diff --git a/meta/lib/oeqa/core/runner.py b/meta/lib/oeqa/core/runner.py index 2d756da6d01..13cdf5ba523 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):