summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/cases/gcc.py
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-12-11 23:26:33 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-12-13 16:32:21 +0000
commit5e15b242a49ded354d23cff616365209d3f8588b (patch)
treec4da839539b2b99280a4b82e2ec300ba2f87dc80 /meta/lib/oeqa/sdk/cases/gcc.py
parent778f3ce1e66ebc517a36d8567b5debbf317be343 (diff)
downloadpoky-5e15b242a49ded354d23cff616365209d3f8588b.tar.gz
oeqa/sdk: show output if run() fails
Use oeqa.utils.subprocesstweak to monkey-patch the subprocess exception so that any output is shown, and remove any explicit try/catch handling that would have hidden this. (From OE-Core rev: 55964b33b561397287779ee474170790dfd03e85) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/sdk/cases/gcc.py')
-rw-r--r--meta/lib/oeqa/sdk/cases/gcc.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oeqa/sdk/cases/gcc.py b/meta/lib/oeqa/sdk/cases/gcc.py
index b32b01fc24..54c6fc488b 100644
--- a/meta/lib/oeqa/sdk/cases/gcc.py
+++ b/meta/lib/oeqa/sdk/cases/gcc.py
@@ -5,6 +5,9 @@ import unittest
5from oeqa.core.utils.path import remove_safe 5from oeqa.core.utils.path import remove_safe
6from oeqa.sdk.case import OESDKTestCase 6from oeqa.sdk.case import OESDKTestCase
7 7
8from oeqa.utils.subprocesstweak import errors_have_output
9errors_have_output()
10
8class GccCompileTest(OESDKTestCase): 11class GccCompileTest(OESDKTestCase):
9 td_vars = ['MACHINE'] 12 td_vars = ['MACHINE']
10 13