From 324785a99e3f2449cb443233e7ce224598c02a3b Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 14 Jul 2018 16:16:37 +0000 Subject: oeqa/sdkbuildproject: Capture output to quieten selftest logs Only show the output in the failure case. Signed-off-by: Richard Purdie --- meta/lib/oeqa/sdk/utils/sdkbuildproject.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/sdk/utils/sdkbuildproject.py b/meta/lib/oeqa/sdk/utils/sdkbuildproject.py index 4e251142d7..0519911e8f 100644 --- a/meta/lib/oeqa/sdk/utils/sdkbuildproject.py +++ b/meta/lib/oeqa/sdk/utils/sdkbuildproject.py @@ -42,4 +42,9 @@ class SDKBuildProject(BuildProject): def _run(self, cmd): self.log("Running . %s; " % self.sdkenv + cmd) - return subprocess.call(". %s; " % self.sdkenv + cmd, shell=True) + try: + output = subprocess.check_output(". %s; " % self.sdkenv + cmd, shell=True, stderr=subprocess.STDOUT) + except subprocess.CalledProcessError as exc: + print(exc.output.decode('utf-8')) + return exc.returncode + return 0 -- cgit 1.2.3-korg