[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 03/29] tests/vm: avoid re-building the VM images all the time
From: |
Alex Bennée |
Subject: |
[PULL 03/29] tests/vm: avoid re-building the VM images all the time |
Date: |
Wed, 28 Feb 2024 11:56:35 +0000 |
The main problem is that "check-venv" is a .PHONY target will always
evaluate and trigger a full re-build of the VM images. While its
tempting to drop it from the dependencies that does introduce a
breakage on freshly configured builds.
Fortunately we do have the otherwise redundant --force flag for the
script which up until now was always on. If we make the usage of
--force conditional on dependencies other than check-venv triggering
the update we can avoid the costly rebuild and still run cleanly on a
fresh checkout.
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2118
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240227144335.1196131-4-alex.bennee@linaro.org>
diff --git a/tests/vm/Makefile.include b/tests/vm/Makefile.include
index bf12e0fa3c5..ac56824a87d 100644
--- a/tests/vm/Makefile.include
+++ b/tests/vm/Makefile.include
@@ -102,7 +102,7 @@ $(IMAGES_DIR)/%.img: $(SRC_PATH)/tests/vm/% \
$(if $(LOG_CONSOLE),--log-console) \
--source-path $(SRC_PATH) \
--image "$@" \
- --force \
+ $(if $(filter-out check-venv, $?), --force) \
--build-image $@, \
" VM-IMAGE $*")
diff --git a/tests/vm/basevm.py b/tests/vm/basevm.py
index c0d62c08031..f8fd751eb14 100644
--- a/tests/vm/basevm.py
+++ b/tests/vm/basevm.py
@@ -646,9 +646,9 @@ def main(vmcls, config=None):
vm = vmcls(args, config=config)
if args.build_image:
if os.path.exists(args.image) and not args.force:
- sys.stderr.writelines(["Image file exists: %s\n" % args.image,
+ sys.stderr.writelines(["Image file exists, skipping build:
%s\n" % args.image,
"Use --force option to overwrite\n"])
- return 1
+ return 0
return vm.build_image(args.image)
if args.build_qemu:
vm.add_source_dir(args.build_qemu)
--
2.39.2
- [PULL 00/29] testing, gdbstub and plugin updates, Alex Bennée, 2024/02/28
- [PULL 02/29] tests/tcg: bump TCG test timeout to 120s, Alex Bennée, 2024/02/28
- [PULL 01/29] tests/tcg: update licenses to GPLv2 as intended, Alex Bennée, 2024/02/28
- [PULL 03/29] tests/vm: avoid re-building the VM images all the time,
Alex Bennée <=
- [PULL 04/29] tests/vm: update openbsd image to 7.4, Alex Bennée, 2024/02/28
- [PULL 06/29] target/ppc: Use GDBFeature for dynamic XML, Alex Bennée, 2024/02/28
- [PULL 07/29] target/riscv: Use GDBFeature for dynamic XML, Alex Bennée, 2024/02/28
- [PULL 08/29] gdbstub: Use GDBFeature for gdb_register_coprocessor, Alex Bennée, 2024/02/28
- [PULL 12/29] gdbstub: Infer number of core registers from XML, Alex Bennée, 2024/02/28
- [PULL 10/29] gdbstub: Change gdb_get_reg_cb and gdb_set_reg_cb, Alex Bennée, 2024/02/28
- [PULL 11/29] gdbstub: Simplify XML lookup, Alex Bennée, 2024/02/28
- [PULL 09/29] gdbstub: Use GDBFeature for GDBRegisterState, Alex Bennée, 2024/02/28
- [PULL 05/29] target/arm: Use GDBFeature for dynamic XML, Alex Bennée, 2024/02/28
- [PULL 13/29] hw/core/cpu: Remove gdb_get_dynamic_xml member, Alex Bennée, 2024/02/28