public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] utils: Ensure shell function failure in python logging is correct
@ 2022-05-26  9:47 Anton Mikanovich
  2022-05-26  9:54 ` Anton Mikanovich
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Anton Mikanovich @ 2022-05-26  9:47 UTC (permalink / raw)
  To: isar-users; +Cc: Anton Mikanovich

If a python function exec_func() calls a shell task, the logging wasn't working
correctly in all cases since the exception was turned into a BBHandledException()
and the logfile piece was lost which is handled at the top task level.

The easiest way to avoid this is to allow the ExecutionError exceptions to
be raised to a higher level, we don't need the traceback for them.

Backported from Bitbake 2.0 upstream branch:
https://git.openembedded.org/bitbake/commit/?id=7cae11f558f9ff5fd05ef23b789aaef92fb5a327

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 bitbake/lib/bb/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index 2a150fe..74cbc69 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -401,7 +401,7 @@ def better_exec(code, context, text = None, realfile = "<code>", pythonexception
         code = better_compile(code, realfile, realfile)
     try:
         exec(code, get_context(), context)
-    except (bb.BBHandledException, bb.parse.SkipRecipe, bb.data_smart.ExpansionError):
+    except (bb.BBHandledException, bb.parse.SkipRecipe, bb.data_smart.ExpansionError, bb.process.ExecutionError):
         # Error already shown so passthrough, no need for traceback
         raise
     except Exception as e:
-- 
2.30.2


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-06-02 11:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-26  9:47 [PATCH] utils: Ensure shell function failure in python logging is correct Anton Mikanovich
2022-05-26  9:54 ` Anton Mikanovich
2022-05-27  7:53 ` Florian Bezdeka
2022-05-27  7:57   ` Anton Mikanovich
2022-05-27  8:07   ` Baurzhan Ismagulov
2022-05-27 12:59     ` Jan Kiszka
2022-06-02 11:28 ` Anton Mikanovich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox