From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: Chen Qi <Qi.Chen@windriver.com>
Cc: "openembedded-core@lists.openembedded.org"
<openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core][PATCH] selftest: allow '-R' and '-r' be used together
Date: Thu, 24 Nov 2022 14:02:05 +0100 [thread overview]
Message-ID: <Y39rTVzD41m41oyP@mail.local> (raw)
In-Reply-To: <CO6PR11MB5602B903C8B0BB9EB6C94214ED0F9@CO6PR11MB5602.namprd11.prod.outlook.com>
On 24/11/2022 12:24:38+0000, Chen Qi wrote:
> Hi Alexandre,
>
> Yes, I'm aware of this behavior regression.
> With this patch, 'oe-selftest -R xxx' needs to be changed to 'oe-selftest -a -R xxx'.
>
Yes, my point is that there is no -R in the command line used by the AB
> I'm not sure if this is useful for other people. Because how people use oe-selftest is unknown to me.
> For me, I want to run something like 'oe-selftest -r A -R A.B.C'.
>
> Regards,
> Qi
>
> -----Original Message-----
> From: Alexandre Belloni <alexandre.belloni@bootlin.com>
> Sent: Thursday, November 24, 2022 7:35 PM
> To: Chen, Qi <Qi.Chen@windriver.com>
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core][PATCH] selftest: allow '-R' and '-r' be used together
>
> Hello,
>
> On 23/11/2022 18:55:28-0800, Chen Qi wrote:
> > For now, there's no easy way to skip some specified tests when using
> > 'oe-selftest -r'. This is because '-R' and '-r' are in the mutually
> > exclusive group. Looking at the codes, the codes have already allowed
> > running specified tests and skipping specified tests at the same time.
> > So move '-R' out of the mutually exclusive group and change its help
> > message.
> >
> > After this change, the following command could be used.
> > oe-selftest -r A -R A.B.C
> >
> > This does introduce a behavior regression.
> > Previous 'oe-selftest -R xxx' needs to now be changed to 'oe-selftest
> > -a -R xxx'.
> >
>
> This fails on the autobuilders which uses:
>
> oe-selftest --skip-tests distrodata.Distrodata.test_checkpkg buildoptions.SourceMirroring.test_yocto_source_mirror reproducible -T machine -T toolchain-user -T toolchain-system -j 15
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/86/builds/4395/steps/14/logs/stdio
>
> > Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> > ---
> > meta/lib/oeqa/selftest/context.py | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/meta/lib/oeqa/selftest/context.py
> > b/meta/lib/oeqa/selftest/context.py
> > index 78c7a467e2..c7dd03ce37 100644
> > --- a/meta/lib/oeqa/selftest/context.py
> > +++ b/meta/lib/oeqa/selftest/context.py
> > @@ -154,9 +154,6 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
> > group.add_argument('-a', '--run-all-tests', default=False,
> > action="store_true", dest="run_all_tests",
> > help='Run all (unhidden) tests')
> > - group.add_argument('-R', '--skip-tests', required=False, action='store',
> > - nargs='+', dest="skips", default=None,
> > - help='Run all (unhidden) tests except the ones specified. Format should be <module>[.<class>[.<test_method>]]')
> > group.add_argument('-r', '--run-tests', required=False, action='store',
> > nargs='+', dest="run_tests", default=None,
> > help='Select what tests to run (modules, classes or
> > test methods). Format should be: <module>.<class>.<test_method>') @@ -171,6 +168,9 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
> > action="store_true", default=False,
> > help='List all available tests.')
> >
> > + parser.add_argument('-R', '--skip-tests', required=False, action='store',
> > + nargs='+', dest="skips", default=None,
> > + help='Skip the tests specified. Format should be
> > + <module>[.<class>[.<test_method>]]')
> > parser.add_argument('-j', '--num-processes', dest='processes', action='store',
> > type=int, help="number of processes to execute in
> > parallel with")
> >
> > --
> > 2.37.1
> >
>
> >
> >
> >
>
>
> --
> Alexandre Belloni, co-owner and COO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#173743): https://lists.openembedded.org/g/openembedded-core/message/173743
> Mute This Topic: https://lists.openembedded.org/mt/95231396/3617179
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2022-11-24 13:02 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-24 2:55 [OE-core][PATCH] selftest: allow '-R' and '-r' be used together Chen Qi
2022-11-24 11:35 ` Alexandre Belloni
2022-11-24 12:24 ` Chen, Qi
2022-11-24 13:02 ` Alexandre Belloni [this message]
2022-11-24 13:10 ` Chen, Qi
2022-11-24 13:35 ` Alexandre Belloni
2022-11-24 13:47 ` Richard Purdie
2022-11-25 5:56 ` Chen, Qi
2022-11-25 13:00 ` Richard Purdie
2022-12-26 0:13 ` Randy MacLeod
2022-12-26 8:33 ` Alexandre Belloni
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=Y39rTVzD41m41oyP@mail.local \
--to=alexandre.belloni@bootlin.com \
--cc=Qi.Chen@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
/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