diff options
author | Philippe Mathieu-Daudé | 2020-05-22 19:25:00 +0200 |
---|---|---|
committer | Laurent Vivier | 2020-06-05 21:23:22 +0200 |
commit | ca6db4691345dee059aa5b7eb6152f005a8eb120 (patch) | |
tree | f6d271822c34ba9fb61cafd203467da9a35fb91c /tests/Makefile.include | |
parent | configure: Avoid building TCG when not needed (diff) | |
download | qemu-ca6db4691345dee059aa5b7eb6152f005a8eb120.tar.gz qemu-ca6db4691345dee059aa5b7eb6152f005a8eb120.tar.xz qemu-ca6db4691345dee059aa5b7eb6152f005a8eb120.zip |
tests/Makefile: Only display TCG-related tests when TCG is available
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Tested-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200522172510.25784-4-philmd@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'tests/Makefile.include')
-rw-r--r-- | tests/Makefile.include | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Makefile.include b/tests/Makefile.include index 03a74b60f6..6bc3d1096b 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" |