]> xenbits.xensource.com Git - people/aperard/qemu-dm.git/commitdiff
tests: add quiet-venv-pip macro
authorJohn Snow <jsnow@redhat.com>
Thu, 26 May 2022 00:09:17 +0000 (20:09 -0400)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 6 Jun 2022 07:26:54 +0000 (09:26 +0200)
Factor out the "test venv pip" macro; rewrite the "check-venv" rule to
be a little more compact. Replace the "PIP" pseudo-command output with
"VENVPIP" to make it 1% more clear that we are talking about using pip
to install something into a venv.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20220526000921.1581503-6-jsnow@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
tests/Makefile.include

index ba9f5bd65cb686092871e0acfc2237d1b0fe3701..fa46c0c61b0b8beadb3c332f6118701e9d384a9d 100644 (file)
@@ -104,13 +104,13 @@ else
        AVOCADO_CMDLINE_TAGS=$(addprefix -t , $(AVOCADO_TAGS))
 endif
 
+quiet-venv-pip = $(quiet-@)$(call quiet-command-run, \
+    $(TESTS_PYTHON) -m pip -q --disable-pip-version-check $1, \
+    "VENVPIP","$1")
+
 $(TESTS_VENV_DIR): $(TESTS_VENV_REQ)
-       $(call quiet-command, \
-            $(PYTHON) -m venv $@, \
-            VENV, $@)
-       $(call quiet-command, \
-            $(TESTS_PYTHON) -m pip -q --disable-pip-version-check install \
-            -r $(TESTS_VENV_REQ), PIP, $(TESTS_VENV_REQ))
+       $(call quiet-command, $(PYTHON) -m venv $@, VENV, $@)
+       $(call quiet-venv-pip,install -r $(TESTS_VENV_REQ))
        $(call quiet-command, touch $@)
 
 $(TESTS_RESULTS_DIR):