From: Luca Boccassi Date: Mon, 8 Dec 2025 12:06:24 +0000 (+0000) Subject: tests: run qemu with cpu_reset,guest_errors debug messages X-Git-Tag: v259-rc3~25^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b169c7512c9cf3ac8eb2b15141e0b9fab9e8961e;p=thirdparty%2Fsystemd.git tests: run qemu with cpu_reset,guest_errors debug messages Attempt to gather more information to debug https://github.com/systemd/systemd/issues/38240 --- diff --git a/test/integration-tests/integration-test-wrapper.py b/test/integration-tests/integration-test-wrapper.py index 0bbfb6044d4..f7d7807a68c 100755 --- a/test/integration-tests/integration-test-wrapper.py +++ b/test/integration-tests/integration-test-wrapper.py @@ -615,6 +615,10 @@ def main() -> None: *(['--', '--capability=CAP_BPF'] if not vm else []), ] # fmt: skip + # XXX: debug for https://github.com/systemd/systemd/issues/38240 + if vm: + cmd += ['--qemu-args=-d cpu_reset,guest_errors -D /dev/stderr'] + try: result = subprocess.run(cmd)