From: Alex Bennée Date: Sat, 9 Mar 2024 11:56:02 +0000 (+0000) Subject: tests/vm: ensure we build everything by default X-Git-Tag: pull-vmclock-20250108~413^2~6 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=578774c09a89dd1e3023677aad5ebb7a3562c8ba;p=users%2Fdwmw2%2Fqemu.git tests/vm: ensure we build everything by default The "check" target by itself is not enough to ensure we build the user mode binaries. While we can't test them with check-tcg we can at least include them in the build. Signed-off-by: Alex Bennée Reviewed-by: Thomas Huth Cc: Richard Henderson Cc: Gustavo Romero --- diff --git a/tests/vm/basevm.py b/tests/vm/basevm.py index f8fd751eb1..4a1af04b9a 100644 --- a/tests/vm/basevm.py +++ b/tests/vm/basevm.py @@ -606,7 +606,7 @@ def parse_args(vmcls): parser.add_argument("--build-qemu", help="build QEMU from source in guest") parser.add_argument("--build-target", - help="QEMU build target", default="check") + help="QEMU build target", default="all check") parser.add_argument("--build-path", default=None, help="Path of build directory, "\ "for using build tree QEMU binary. ")