diff options
author | Cleber Rosa | 2021-02-26 00:21:22 +0100 |
---|---|---|
committer | Thomas Huth | 2021-03-09 11:26:31 +0100 |
commit | 235c15fac50026b32b43431bd37a61a9e03d42da (patch) | |
tree | c7b5aa197261109fa6a827b3e953c780ee852431 /tests/Makefile.include | |
parent | Acceptance Tests: restore downloading of VM images (diff) | |
download | qemu-235c15fac50026b32b43431bd37a61a9e03d42da.tar.gz qemu-235c15fac50026b32b43431bd37a61a9e03d42da.tar.xz qemu-235c15fac50026b32b43431bd37a61a9e03d42da.zip |
Acceptance Tests: restore filtering of tests by target arch
Previously, tests were being filtered by the matching target
architectures to be built. The benefit, compared to the current
situation, is a more concise test job that won't show tests canceled
because a matching QEMU binary was not found (those tests won't even
be attempted).
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Message-Id: <20210225232122.1254879-3-crosa@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/Makefile.include')
-rw-r--r-- | tests/Makefile.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.include b/tests/Makefile.include index dbd53a9de6..799e47169c 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -92,7 +92,7 @@ TESTS_RESULTS_DIR=$(BUILD_DIR)/tests/results # Any number of command separated loggers are accepted. For more # information please refer to "avocado --help". AVOCADO_SHOW=app -AVOCADO_TAGS=$(patsubst %-softmmu,-t arch:%, $(filter %-softmmu,$(TARGET_DIRS))) +AVOCADO_TAGS=$(patsubst %-softmmu,-t arch:%, $(filter %-softmmu,$(TARGETS))) $(TESTS_VENV_DIR): $(TESTS_VENV_REQ) $(call quiet-command, \ |