diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2023-03-15 17:43:06 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2023-03-22 15:06:57 +0000 |
commit | 6f6ca067d2712261502346db6508b8de43adb1a2 (patch) | |
tree | d5d4f69467e0a94b288e2d842d810a623c1df2aa /tests/tcg | |
parent | 32ba75adc009763db8a9686a57c268b82e774f48 (diff) | |
download | qemu-6f6ca067d2712261502346db6508b8de43adb1a2.zip qemu-6f6ca067d2712261502346db6508b8de43adb1a2.tar.gz qemu-6f6ca067d2712261502346db6508b8de43adb1a2.tar.bz2 |
tests/tcg: add some help output for running individual tests
So you can do:
cd tests/tcg/aarch64-linux-user
make -f ../Makefile.target help
To see the list of tests. You can then run each one individually.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Acked-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20230315174331.2959-8-alex.bennee@linaro.org>
Diffstat (limited to 'tests/tcg')
-rw-r--r-- | tests/tcg/Makefile.target | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/tcg/Makefile.target b/tests/tcg/Makefile.target index a3b0aaf..8318caf 100644 --- a/tests/tcg/Makefile.target +++ b/tests/tcg/Makefile.target @@ -201,3 +201,10 @@ clean: distclean: rm -f config-cc.mak config-target.mak ../config-$(TARGET).mak + +.PHONY: help +help: + @echo "TCG tests help $(TARGET_NAME)" + @echo "Built with $(CC)" + @echo "Available tests:" + @$(foreach t,$(RUN_TESTS),echo " $t";) |