From: Alex Bennée Date: Wed, 8 Jan 2025 12:10:49 +0000 (+0000) Subject: tests/vm: fix build_path based path X-Git-Tag: pull-vmclock-20250116~5^2~5 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f673a45725cd80c2a2456217a60625f5306678d8;p=users%2Fdwmw2%2Fqemu.git tests/vm: fix build_path based path We no longer need to go into the per-arch build directories to find the build directories binary. Lets call it directly. Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Alex Bennée Message-Id: <20250108121054.1126164-28-alex.bennee@linaro.org> --- diff --git a/tests/vm/basevm.py b/tests/vm/basevm.py index 4a1af04b9a..6f3f2e76df 100644 --- a/tests/vm/basevm.py +++ b/tests/vm/basevm.py @@ -520,8 +520,7 @@ def get_qemu_path(arch, build_path=None): if "QEMU" in os.environ: qemu_path = os.environ["QEMU"] elif build_path: - qemu_path = os.path.join(build_path, arch + "-softmmu") - qemu_path = os.path.join(qemu_path, "qemu-system-" + arch) + qemu_path = os.path.join(build_path, "qemu-system-" + arch) else: # Default is to use system path for qemu. qemu_path = "qemu-system-" + arch