diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-31 15:59:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-06 11:24:26 +0100 |
commit | 546c32753b2f0c2174c360ba83a7d2f7ffbb33f7 (patch) | |
tree | 85adaffbf373b0c2d4c94e9b8fba7ef9835ccd3b /meta/lib/oeqa/utils | |
parent | d9cb21854b139e9f8620ee256a3957db542494da (diff) | |
download | poky-546c32753b2f0c2174c360ba83a7d2f7ffbb33f7.tar.gz |
classes/lib: Remove bb.build.FuncFailed
Whilst seemingly a good idea, this exception doesn't really serve any purpose
that bb.fatal() doesn't cover. Wrapping exceptions within exceptions isn't
pythonic.
Its not used in many places, lets clean up those and remove usage of it
entirely. It may ultimately be dropped form bitbake entirely.
(From OE-Core rev: efe87ce4b2154c6f1c591ed9d8f770c229b044ad)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/utils')
-rw-r--r-- | meta/lib/oeqa/utils/commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index 59ebfbe125..7140bc73d2 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py | |||
@@ -337,8 +337,8 @@ def runqemu(pn, ssh=True, runqemuparams='', image_fstype=None, launch_cmd=None, | |||
337 | qemu.deploy() | 337 | qemu.deploy() |
338 | try: | 338 | try: |
339 | qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes) | 339 | qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes) |
340 | except bb.build.FuncFailed: | 340 | except EXception as e: |
341 | msg = 'Failed to start QEMU - see the logs in %s' % logdir | 341 | msg = str(e) + '\nFailed to start QEMU - see the logs in %s' % logdir |
342 | if os.path.exists(qemu.qemurunnerlog): | 342 | if os.path.exists(qemu.qemurunnerlog): |
343 | with open(qemu.qemurunnerlog, 'r') as f: | 343 | with open(qemu.qemurunnerlog, 'r') as f: |
344 | msg = msg + "Qemurunner log output from %s:\n%s" % (qemu.qemurunnerlog, f.read()) | 344 | msg = msg + "Qemurunner log output from %s:\n%s" % (qemu.qemurunnerlog, f.read()) |