From b169c7512c9cf3ac8eb2b15141e0b9fab9e8961e Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Mon, 8 Dec 2025 12:06:24 +0000 Subject: [PATCH] tests: run qemu with cpu_reset,guest_errors debug messages Attempt to gather more information to debug https://github.com/systemd/systemd/issues/38240 --- test/integration-tests/integration-test-wrapper.py | 4 ++++ 1 file changed, 4 insertions(+) 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) -- 2.47.3