From: Sascha Hauer <sha@pengutronix.de>
To: Ahmad Fatoum <a.fatoum@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] test: pytest: have --qemu gobble up all remaining arguments
Date: Wed, 23 Aug 2023 07:53:56 +0200 [thread overview]
Message-ID: <20230823055356.GD16522@pengutronix.de> (raw)
In-Reply-To: <20230822074848.3905682-1-a.fatoum@pengutronix.de>
On Tue, Aug 22, 2023 at 09:48:48AM +0200, Ahmad Fatoum wrote:
> Passing extra arguments to Qemu was a bit cumbersome so far:
>
> pytest --qemu=-device --qemu=virtio-rng-pci
>
> Improve upon this by having --qemu just gobble all remaining arguments:
>
> pytest --qemu -device virtio-rng-pci
>
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> test/conftest.py | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
Applied, thanks
Sascha
>
> diff --git a/test/conftest.py b/test/conftest.py
> index d2eef5156423..64082869b329 100644
> --- a/test/conftest.py
> +++ b/test/conftest.py
> @@ -1,5 +1,6 @@
> import pytest
> import os
> +import argparse
> from .py import helper
>
>
> @@ -40,9 +41,8 @@ def pytest_addoption(parser):
> parser.addoption('--blk', action='append', dest='qemu_block',
> default=[], metavar="FILE",
> help=('Pass block device to emulated barebox. Can be specified more than once'))
> - parser.addoption('--qemu', action='append', dest='qemu_arg',
> - default=[], metavar="option",
> - help=('Pass option to QEMU as is'))
> + parser.addoption('--qemu', dest='qemu_arg', nargs=argparse.REMAINDER,
> + help=('Pass all remaining options to QEMU as is'))
>
> @pytest.fixture(scope="session")
> def strategy(request, target, pytestconfig):
> --
> 2.39.2
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
prev parent reply other threads:[~2023-08-23 5:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-22 7:48 Ahmad Fatoum
2023-08-23 5:53 ` Sascha Hauer [this message]
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=20230823055356.GD16522@pengutronix.de \
--to=sha@pengutronix.de \
--cc=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.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