]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
tests/Makefile.include: Increase the level of indentation in the help text
authorThomas Huth <thuth@redhat.com>
Fri, 30 Aug 2024 13:38:04 +0000 (15:38 +0200)
committerThomas Huth <thuth@redhat.com>
Wed, 4 Sep 2024 08:52:29 +0000 (10:52 +0200)
The next patch is going to add some entries that need more space between
the command and the help text, so let's increase the indentation here
first.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-ID: <20240830133841.142644-11-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/Makefile.include

index 537804d1012499777bb4772f5f42d56ece006a20..fbb1a4b2114a2aa8519f7b0ac4e36444d66301ab 100644 (file)
@@ -3,28 +3,28 @@
 .PHONY: check-help
 check-help:
        @echo "Regression testing targets:"
-       @echo " $(MAKE) check                  Run block, qapi-schema, unit, softfloat, qtest and decodetree tests"
-       @echo " $(MAKE) bench                  Run speed tests"
+       @echo " $(MAKE) check                    Run block, qapi-schema, unit, softfloat, qtest and decodetree tests"
+       @echo " $(MAKE) bench                    Run speed tests"
        @echo
        @echo "Individual test suites:"
-       @echo " $(MAKE) check-qtest-TARGET     Run qtest tests for given target"
-       @echo " $(MAKE) check-qtest            Run qtest tests"
-       @echo " $(MAKE) check-unit             Run qobject tests"
-       @echo " $(MAKE) check-qapi-schema      Run QAPI schema tests"
-       @echo " $(MAKE) check-block            Run block tests"
+       @echo " $(MAKE) check-qtest-TARGET       Run qtest tests for given target"
+       @echo " $(MAKE) check-qtest              Run qtest tests"
+       @echo " $(MAKE) check-unit               Run qobject tests"
+       @echo " $(MAKE) check-qapi-schema        Run QAPI schema tests"
+       @echo " $(MAKE) check-block              Run block tests"
 ifneq ($(filter $(all-check-targets), check-softfloat),)
-       @echo " $(MAKE) check-tcg              Run TCG tests"
-       @echo " $(MAKE) check-softfloat        Run FPU emulation tests"
+       @echo " $(MAKE) check-tcg                Run TCG tests"
+       @echo " $(MAKE) check-softfloat          Run FPU emulation tests"
 endif
-       @echo " $(MAKE) check-avocado          Run avocado (integration) tests for currently configured targets"
+       @echo " $(MAKE) check-avocado            Run avocado (integration) tests for currently configured targets"
        @echo
-       @echo " $(MAKE) check-report.junit.xml Generates an aggregated XML test report"
-       @echo " $(MAKE) check-venv             Creates a Python venv for tests"
-       @echo " $(MAKE) check-clean            Clean the tests and related data"
+       @echo " $(MAKE) check-report.junit.xml   Generates an aggregated XML test report"
+       @echo " $(MAKE) check-venv               Creates a Python venv for tests"
+       @echo " $(MAKE) check-clean              Clean the tests and related data"
        @echo
        @echo "The following are useful for CI builds"
-       @echo " $(MAKE) check-build            Build most test binaries"
-       @echo " $(MAKE) get-vm-images          Downloads all images used by avocado tests, according to configured targets (~350 MB each, 1.5 GB max)"
+       @echo " $(MAKE) check-build              Build most test binaries"
+       @echo " $(MAKE) get-vm-images            Downloads all images used by avocado tests, according to configured targets (~350 MB each, 1.5 GB max)"
        @echo
        @echo
        @echo "The variable SPEED can be set to control the gtester speed setting."