qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 08/52] tests/vm: Use python configured on build


From: Alex Bennée
Subject: [Qemu-devel] [PULL 08/52] tests/vm: Use python configured on build
Date: Fri, 7 Jun 2019 10:05:07 +0100

From: Wainer dos Santos Moschetta <address@hidden>

Changed the vm-test makefile to execute python scripts
with the interpreter configured on build. This allows to
run vm-test targets properly in Linux distros with Python 3
only support.

Signed-off-by: Wainer dos Santos Moschetta <address@hidden>
Message-Id: <address@hidden>
Signed-off-by: Alex Bennée <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Tested-by: Philippe Mathieu-Daudé <address@hidden>

diff --git a/tests/vm/Makefile.include b/tests/vm/Makefile.include
index 992d823f6b..6f82676306 100644
--- a/tests/vm/Makefile.include
+++ b/tests/vm/Makefile.include
@@ -35,7 +35,7 @@ $(IMAGES_DIR)/%.img:  $(SRC_PATH)/tests/vm/% \
                        $(SRC_PATH)/tests/vm/Makefile.include
        @mkdir -p $(IMAGES_DIR)
        $(call quiet-command, \
-               $< \
+               $(PYTHON) $< \
                $(if $(V)$(DEBUG), --debug) \
                --image "$@" \
                --force \
@@ -46,7 +46,7 @@ $(IMAGES_DIR)/%.img:  $(SRC_PATH)/tests/vm/% \
 # Build in VM $(IMAGE)
 vm-build-%: $(IMAGES_DIR)/%.img
        $(call quiet-command, \
-               $(SRC_PATH)/tests/vm/$* \
+               $(PYTHON) $(SRC_PATH)/tests/vm/$* \
                $(if $(V)$(DEBUG), --debug) \
                $(if $(DEBUG), --interactive) \
                $(if $(J),--jobs $(J)) \
-- 
2.20.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]