mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
Makefile: Add rules to run vm tests
Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Tested-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Fam Zheng <famz@redhat.com>
This commit is contained in:
parent
fdfaa33291
commit
b1fb9a63fc
3 changed files with 45 additions and 1 deletions
42
tests/vm/Makefile.include
Normal file
42
tests/vm/Makefile.include
Normal file
|
@ -0,0 +1,42 @@
|
|||
# Makefile for VM tests
|
||||
|
||||
.PHONY: vm-build-all
|
||||
|
||||
IMAGES := ubuntu.i386 freebsd netbsd openbsd
|
||||
IMAGE_FILES := $(patsubst %, tests/vm/%.img, $(IMAGES))
|
||||
|
||||
.PRECIOUS: $(IMAGE_FILES)
|
||||
|
||||
vm-test:
|
||||
@echo "vm-test: Test QEMU in preconfigured virtual machines"
|
||||
@echo
|
||||
@echo " vm-build-ubuntu.i386 - Build QEMU in ubuntu i386 VM"
|
||||
@echo " vm-build-freebsd - Build QEMU in FreeBSD VM"
|
||||
@echo " vm-build-netbsd - Build QEMU in NetBSD VM"
|
||||
@echo " vm-build-openbsd - Build QEMU in OpenBSD VM"
|
||||
|
||||
vm-build-all: $(addprefix vm-build-, $(IMAGES))
|
||||
|
||||
tests/vm/%.img: $(SRC_PATH)/tests/vm/% \
|
||||
$(SRC_PATH)/tests/vm/basevm.py \
|
||||
$(SRC_PATH)/tests/vm/Makefile.include
|
||||
$(call quiet-command, \
|
||||
$< \
|
||||
$(if $(V)$(DEBUG), --debug) \
|
||||
--image "$@" \
|
||||
--force \
|
||||
--build-image $@, \
|
||||
" VM-IMAGE $*")
|
||||
|
||||
|
||||
# Build in VM $(IMAGE)
|
||||
vm-build-%: tests/vm/%.img
|
||||
$(call quiet-command, \
|
||||
$(SRC_PATH)/tests/vm/$* \
|
||||
$(if $(V)$(DEBUG), --debug) \
|
||||
$(if $(DEBUG), --interactive) \
|
||||
$(if $(J),--jobs $(J)) \
|
||||
--image "$<" \
|
||||
--build-qemu $(SRC_PATH), \
|
||||
" VM-BUILD $*")
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue