From: Thomas Huth <thuth@redhat.com>
To: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>,
qemu-devel@nongnu.org
Cc: "Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Pierrick Bouvier" <pierrick.bouvier@linaro.org>,
"Paolo Bonzini" <pbonzini@redhat.com>
Subject: Re: [PATCH v2 1/3] tests/functional: add --keep-scratch CLI arg
Date: Fri, 25 Jul 2025 06:32:14 +0200 [thread overview]
Message-ID: <5510b8fb-82af-474b-a735-6f2334608f46@redhat.com> (raw)
In-Reply-To: <20250718-functional_tests_args-v2-1-cde6e08bf98e@linaro.org>
On 18/07/2025 13.04, Manos Pitsidianakis wrote:
> Add CLI arg to keep scratch files after test execution, equivalent to
> setting QEMU_TEST_KEEP_SCRATCH env var.
>
> Suggested-by: Alex Bennée <alex.bennee@linaro.org>
> Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
> ---
> tests/functional/qemu_test/testcase.py | 14 +++++++++++++-
> 1 file changed, 13 insertions(+), 1 deletion(-)
>
> diff --git a/tests/functional/qemu_test/testcase.py b/tests/functional/qemu_test/testcase.py
> index 3ecaaeffd4df2945fb4c44b4ddef6911527099b9..9b00c63e6ca7a2a669fd456f1d1b51501ce4a726 100644
> --- a/tests/functional/qemu_test/testcase.py
> +++ b/tests/functional/qemu_test/testcase.py
> @@ -43,6 +43,13 @@ def parse_args(test_name: str) -> argparse.Namespace:
> help="Also print test and console logs on stdout. This will make the"
> " TAP output invalid and is meant for debugging only.",
> )
> + parser.add_argument(
> + "--keep-scratch",
> + action="store_true",
> + help="Do not purge any scratch files created during the tests. "
> + "This is equivalent to setting QEMU_TEST_KEEP_SCRATCH=1 in the "
> + "environment.",
> + )
> return parser.parse_args()
>
>
> @@ -214,6 +221,9 @@ def setUp(self):
> path = os.path.basename(sys.argv[0])[:-3]
> args = parse_args(path)
> self.stdout_handler = None
> + self.keep_scratch = (
> + "QEMU_TEST_KEEP_SCRATCH" in os.environ or args.keep_scratch
> + )
> if args.debug:
> self.stdout_handler = logging.StreamHandler(sys.stdout)
> self.stdout_handler.setLevel(logging.DEBUG)
> @@ -255,8 +265,10 @@ def setUp(self):
> self.skipTest('One or more assets is not available')
>
> def tearDown(self):
> - if "QEMU_TEST_KEEP_SCRATCH" not in os.environ:
> + if not self.keep_scratch:
> shutil.rmtree(self.workdir)
> + else:
> + self.log.info(f"Kept scratch files in {self.workdir}")
> if self.socketdir is not None:
> shutil.rmtree(self.socketdir.name)
> self.socketdir = None
>
Acked-by: Thomas Huth <thuth@redhat.com>
next prev parent reply other threads:[~2025-07-25 4:33 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-18 11:04 [PATCH v2 0/3] tests/functional: add more CLI args Manos Pitsidianakis
2025-07-18 11:04 ` [PATCH v2 1/3] tests/functional: add --keep-scratch CLI arg Manos Pitsidianakis
2025-07-25 4:32 ` Thomas Huth [this message]
2025-07-18 11:04 ` [PATCH v2 2/3] tests/functional: add --list-tests " Manos Pitsidianakis
2025-07-25 4:39 ` Thomas Huth
2025-07-25 9:00 ` Manos Pitsidianakis
2025-07-18 11:04 ` [PATCH v2 3/3] tests/functional: add -k TEST_NAME_PATTERN " Manos Pitsidianakis
2025-07-25 4:42 ` Thomas Huth
2025-07-24 7:54 ` [PATCH v2 0/3] tests/functional: add more CLI args Manos Pitsidianakis
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=5510b8fb-82af-474b-a735-6f2334608f46@redhat.com \
--to=thuth@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=berrange@redhat.com \
--cc=manos.pitsidianakis@linaro.org \
--cc=pbonzini@redhat.com \
--cc=philmd@linaro.org \
--cc=pierrick.bouvier@linaro.org \
--cc=qemu-devel@nongnu.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;
as well as URLs for NNTP newsgroup(s).