[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 03/14] tests/Makefile: Only display TCG-related tests when TCG is
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 03/14] tests/Makefile: Only display TCG-related tests when TCG is available |
Date: |
Fri, 13 Mar 2020 19:36:41 +0100 |
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
tests/Makefile.include | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/Makefile.include b/tests/Makefile.include
index 67e8fcddda..99db5eb3e0 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -12,8 +12,10 @@ check-help:
@echo " $(MAKE) check-speed Run qobject speed tests"
@echo " $(MAKE) check-qapi-schema Run QAPI schema tests"
@echo " $(MAKE) check-block Run block tests"
+ifeq ($(CONFIG_TCG),y)
@echo " $(MAKE) check-tcg Run TCG tests"
@echo " $(MAKE) check-softfloat Run FPU emulation tests"
+endif
@echo " $(MAKE) check-acceptance Run all acceptance (functional)
tests"
@echo
@echo " $(MAKE) check-report.tap Generates an aggregated TAP test
report"
--
2.21.1
[PATCH 02/14] configure: Avoid building TCG when not needed, Philippe Mathieu-Daudé, 2020/03/13
[PATCH 03/14] tests/Makefile: Only display TCG-related tests when TCG is available,
Philippe Mathieu-Daudé <=
[PATCH 04/14] tests/Makefile: Restrict some softmmu-only tests, Philippe Mathieu-Daudé, 2020/03/13
[PATCH 05/14] stubs/Makefile: Reduce the user-mode object list, Philippe Mathieu-Daudé, 2020/03/13
[PATCH 06/14] util/Makefile: Reduce the user-mode object list, Philippe Mathieu-Daudé, 2020/03/13
[PATCH 07/14] target/riscv/cpu: Restrict CPU migration to system-mode, Philippe Mathieu-Daudé, 2020/03/13