aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2017-09-08 17:16:54 +0800
committerAlex Bennée <alex.bennee@linaro.org>2018-06-05 16:25:42 +0100
commit208ecb3e1acc8d55dab49fdf721a86d513691688 (patch)
tree135acf7a2834a89e3f6a8369ac1d38d74e94b4ae /tests
parent51a12b51fd3693a16eb73362713a98d467e15af7 (diff)
downloadqemu-208ecb3e1acc8d55dab49fdf721a86d513691688.zip
qemu-208ecb3e1acc8d55dab49fdf721a86d513691688.tar.gz
qemu-208ecb3e1acc8d55dab49fdf721a86d513691688.tar.bz2
Makefile: Rename TARGET_DIRS to TARGET_LIST
To be more accurate on its purpose and make code that looks for a certain target out of this variable more readable. Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.include2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.include b/tests/Makefile.include
index 86f90c0..9854e77 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -858,7 +858,7 @@ endif
# QTest rules
-TARGETS=$(patsubst %-softmmu,%, $(filter %-softmmu,$(TARGET_DIRS)))
+TARGETS=$(patsubst %-softmmu,%, $(filter %-softmmu,$(TARGET_LIST)))
ifeq ($(CONFIG_POSIX),y)
QTEST_TARGETS = $(TARGETS)
check-qtest-y=$(foreach TARGET,$(TARGETS), $(check-qtest-$(TARGET)-y))