From: Luca Boccassi Date: Sun, 16 Jun 2024 18:15:24 +0000 (+0100) Subject: test: support TEST_NO_KVM X-Git-Tag: v257-rc1~1120^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d2701e7d1d0a7194026dd371071df6e63f59a82;p=thirdparty%2Fsystemd.git test: support TEST_NO_KVM The shell integration suite allows to manually deselect KVM, so suppor the same env var for the same purpose in python. --- diff --git a/test/integration-test-wrapper.py b/test/integration-test-wrapper.py index 1e015e7d47e..15b1ce10553 100755 --- a/test/integration-test-wrapper.py +++ b/test/integration-test-wrapper.py @@ -124,6 +124,7 @@ def main(): *args.mkosi_args, '--append', '--qemu-firmware', args.firmware, + '--qemu-kvm', "auto" if not bool(int(os.getenv("TEST_NO_KVM", "0"))) else "no", '--kernel-command-line-extra', ' '.join([ 'systemd.hostname=H',