[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 01/10] tests/vm: Add validation of target
From: |
Robert Foley |
Subject: |
[PATCH v3 01/10] tests/vm: Add validation of target |
Date: |
Tue, 10 Mar 2020 14:25:27 -0400 |
This validation is now useful since some targets
may not be valid if their dependencies are not installed.
Instead of allowing the scripts to fail with missing dependencies
we will fail earlier with a helpful error message.
Signed-off-by: Robert Foley <address@hidden>
---
tests/vm/Makefile.include | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/tests/vm/Makefile.include b/tests/vm/Makefile.include
index 1bf9693d19..835e3f3549 100644
--- a/tests/vm/Makefile.include
+++ b/tests/vm/Makefile.include
@@ -2,7 +2,7 @@
.PHONY: vm-build-all vm-clean-all
-IMAGES := freebsd netbsd openbsd centos fedora
+IMAGES := freebsd netbsd openbsd fedora
ifneq ($(GENISOIMAGE),)
IMAGES += ubuntu.i386 centos
endif
@@ -49,9 +49,20 @@ vm-build-all: $(addprefix vm-build-, $(IMAGES))
vm-clean-all:
rm -f $(IMAGE_FILES)
+# Validate the target since some targets will not
+# be valid if their software dependencies are not installed.
+define validate_target
+ @echo $(1) | grep $(2) || \
+ (echo "Invalid target ($(2))"; \
+ echo "Valid Targets are: $(1)"; \
+ echo "See make vm-help for more information."; \
+ exit 1;)
+endef
+
$(IMAGES_DIR)/%.img: $(SRC_PATH)/tests/vm/% \
$(SRC_PATH)/tests/vm/basevm.py \
$(SRC_PATH)/tests/vm/Makefile.include
+ $(call validate_target,${IMAGES},$*)
@mkdir -p $(IMAGES_DIR)
$(call quiet-command, \
$(PYTHON) $< \
@@ -64,6 +75,7 @@ $(IMAGES_DIR)/%.img: $(SRC_PATH)/tests/vm/% \
# Build in VM $(IMAGE)
vm-build-%: $(IMAGES_DIR)/%.img
+ $(call validate_target,${IMAGES},$*)
$(call quiet-command, \
$(PYTHON) $(SRC_PATH)/tests/vm/$* \
$(if $(V)$(DEBUG), --debug) \
@@ -79,6 +91,7 @@ vm-build-%: $(IMAGES_DIR)/%.img
" VM-BUILD $*")
vm-boot-serial-%: $(IMAGES_DIR)/%.img
+ $(call validate_target,${IMAGES},$*)
qemu-system-x86_64 -enable-kvm -m 4G -smp 2 -nographic \
-drive if=none,id=vblk,cache=writeback,file="$<" \
-netdev user,id=vnet \
@@ -87,6 +100,7 @@ vm-boot-serial-%: $(IMAGES_DIR)/%.img
|| true
vm-boot-ssh-%: $(IMAGES_DIR)/%.img
+ $(call validate_target,${IMAGES},$*)
$(call quiet-command, \
$(PYTHON) $(SRC_PATH)/tests/vm/$* \
$(if $(J),--jobs $(J)) \
--
2.17.1
- [PATCH v3 00/10] tests/vm: Add support for aarch64 VMs, Robert Foley, 2020/03/10
- [PATCH v3 01/10] tests/vm: Add validation of target,
Robert Foley <=
- [PATCH v3 02/10] tests/vm: Add configuration to basevm.py, Robert Foley, 2020/03/10
- [PATCH v3 04/10] tests/vm: add --boot-console switch, Robert Foley, 2020/03/10
- [PATCH v3 03/10] tests/vm: Added configuration file support, Robert Foley, 2020/03/10
- [PATCH v3 05/10] tests/vm: Add ability to select QEMU from current build., Robert Foley, 2020/03/10
- [PATCH v3 06/10] tests/vm: allow wait_ssh() to specify command, Robert Foley, 2020/03/10
- [PATCH v3 07/10] tests/vm: Added a new script for ubuntu.aarch64., Robert Foley, 2020/03/10
- [PATCH v3 08/10] tests/vm: Added a new script for centos.aarch64., Robert Foley, 2020/03/10
- [PATCH v3 09/10] tests/vm: change scripts to use self._config, Robert Foley, 2020/03/10
- [PATCH v3 10/10] tests/vm: Add workaround to consume console, Robert Foley, 2020/03/10