[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 24/27] tests/vm: fix build_path based path
From: |
Alex Bennée |
Subject: |
[PATCH v2 24/27] tests/vm: fix build_path based path |
Date: |
Wed, 18 Dec 2024 16:21:00 +0000 |
We no longer need to go into the per-arch build directories to find
the build directories binary. Lets call it directly.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
tests/vm/basevm.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
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
--
2.39.5
- [PATCH v2 10/27] tests/functional: update the riscv32 tuxrun tests, (continued)
- [PATCH v2 10/27] tests/functional: update the riscv32 tuxrun tests, Alex Bennée, 2024/12/18
- [PATCH v2 15/27] tests/functional/aarch64: add tests for FEAT_RME, Alex Bennée, 2024/12/18
- [PATCH v2 09/27] tests/functional: update the ppc64 tuxrun tests, Alex Bennée, 2024/12/18
- [PATCH v2 12/27] tests/functional: update the s390x tuxrun tests, Alex Bennée, 2024/12/18
- [PATCH v2 19/27] tests/functional: remove hacky sleep from the tests, Alex Bennée, 2024/12/18
- [PATCH v2 07/27] tests/functional: update the mips64el tuxrun tests, Alex Bennée, 2024/12/18
- [PATCH v2 24/27] tests/vm: fix build_path based path,
Alex Bennée <=
- [PATCH v2 23/27] tests/lcitool: remove temp workaround for debian mips64el, Alex Bennée, 2024/12/18
- [PATCH v2 21/27] tests/lcitool: bump to latest version of libvirt-ci, Alex Bennée, 2024/12/18
- [PATCH v2 13/27] tests/functional: update the sparc64 tuxrun tests, Alex Bennée, 2024/12/18
- [PATCH v2 20/27] tests/functional: extend test_aarch64_virt with vulkan test, Alex Bennée, 2024/12/18
- [PATCH v2 22/27] tests/docker: move riscv64 cross container from sid to trixie, Alex Bennée, 2024/12/18
- [PATCH v2 27/27] pc-bios: ensure keymaps dependencies set vnc tests, Alex Bennée, 2024/12/18