public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Florian Bezdeka <florian.bezdeka@siemens.com>
To: Anton Mikanovich <amikan@ilbers.de>, isar-users@googlegroups.com
Subject: Re: [PATCH] utils: Ensure shell function failure in python logging is correct
Date: Fri, 27 May 2022 09:53:24 +0200	[thread overview]
Message-ID: <fa898f3e-f284-ecbe-9a0e-488bfe7da9c7@siemens.com> (raw)
In-Reply-To: <20220526094739.6340-1-amikan@ilbers.de>

On 26.05.22 11:47, Anton Mikanovich wrote:
> 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.

Upstream first? Why can't we ask bitbake guys to do the backport and
lift our bitbake version afterwards? Is that already ongoing?

> 
> 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:


  parent reply	other threads:[~2022-05-27  7:53 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-26  9:47 Anton Mikanovich
2022-05-26  9:54 ` Anton Mikanovich
2022-05-27  7:53 ` Florian Bezdeka [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fa898f3e-f284-ecbe-9a0e-488bfe7da9c7@siemens.com \
    --to=florian.bezdeka@siemens.com \
    --cc=amikan@ilbers.de \
    --cc=isar-users@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox