All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [OE-core] [PATCH] oeqa/core/loader: fix regex to include numbers
       [not found] <161F23611A5F1482.17108@lists.openembedded.org>
@ 2020-07-06 14:14 ` Vacek, Patrick
  2020-07-06 14:23   ` Richard Purdie
  0 siblings, 1 reply; 2+ messages in thread
From: Vacek, Patrick @ 2020-07-06 14:14 UTC (permalink / raw)
  To: openembedded-core

I think I need some help here. I got an automated email that my patch failed to
apply, supposedly because I need to rebase. I'm on the same commit that it is
suggested to rebase to, though, and I can download the patch and apply it
without any problems. What am I doing wrong here?

Thanks,
Patrick

On Mon, 2020-07-06 at 10:34 +0000, Vacek, Patrick via lists.openembedded.org
wrote:
> The previous version only included the numbers 1 and 2 in the allowed
> characters
> for the module name. In the past, this was (\w+) so all numbers were allowed.
> Now it explicitly includes all numbers again.
> 
> Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
> ---
>  meta/lib/oeqa/core/loader.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta/lib/oeqa/core/loader.py b/meta/lib/oeqa/core/loader.py
> index 73c5788508..11978213b8 100644
> --- a/meta/lib/oeqa/core/loader.py
> +++ b/meta/lib/oeqa/core/loader.py
> @@ -46,7 +46,7 @@ def _built_modules_dict(modules):
>      for module in modules:
>          # Assumption: package and module names do not contain upper case
>          # characters, whereas class names do
> -        m = re.match(r'^([1-2a-z_.]+)(?:\.(\w[^.]*)(?:\.([^.]+))?)?$',
> module, flags=re.ASCII)
> +        m = re.match(r'^([0-9a-z_.]+)(?:\.(\w[^.]*)(?:\.([^.]+))?)?$',
> module, flags=re.ASCII)
>          if not m:
>              continue
> 
> --
> 2.27.0
> 

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

* Re: [OE-core] [PATCH] oeqa/core/loader: fix regex to include numbers
  2020-07-06 14:14 ` [OE-core] [PATCH] oeqa/core/loader: fix regex to include numbers Vacek, Patrick
@ 2020-07-06 14:23   ` Richard Purdie
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Purdie @ 2020-07-06 14:23 UTC (permalink / raw)
  To: patrick.vacek, openembedded-core

On Mon, 2020-07-06 at 14:14 +0000, Vacek, Patrick via
lists.openembedded.org wrote:
> I think I need some help here. I got an automated email that my patch failed to
> apply, supposedly because I need to rebase. I'm on the same commit that it is
> suggested to rebase to, though, and I can download the patch and apply it
> without any problems. What am I doing wrong here?

The patch is queued in -next, I think the automated tests are lagging
behind a bit or something :/.

Cheers,

Richard


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

end of thread, other threads:[~2020-07-06 14:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <161F23611A5F1482.17108@lists.openembedded.org>
2020-07-06 14:14 ` [OE-core] [PATCH] oeqa/core/loader: fix regex to include numbers Vacek, Patrick
2020-07-06 14:23   ` Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.