diff options
author | Wainer dos Santos Moschetta <wainersm@redhat.com> | 2019-03-29 17:08:04 -0400 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-06-12 17:53:22 +0100 |
commit | eec4b30ae6dff370599015792ed9f1c60e436c33 (patch) | |
tree | aeb2a3cdbbd7df066854f24dbac2b50315992627 | |
parent | aea439138b97d5ab5032b2e00f5d99df9ef40f71 (diff) | |
download | qemu-eec4b30ae6dff370599015792ed9f1c60e436c33.zip qemu-eec4b30ae6dff370599015792ed9f1c60e436c33.tar.gz qemu-eec4b30ae6dff370599015792ed9f1c60e436c33.tar.bz2 |
tests/vm: Add missing variables on help
Added description of variables missing on vm-test help.
Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Message-Id: <20190329210804.22121-6-wainersm@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
-rw-r--r-- | tests/vm/Makefile.include | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/vm/Makefile.include b/tests/vm/Makefile.include index 6f82676..c59411b 100644 --- a/tests/vm/Makefile.include +++ b/tests/vm/Makefile.include @@ -21,9 +21,13 @@ vm-test: @echo " vm-clean-all - Clean up VM images" @echo @echo "Special variables:" - @echo " BUILD_TARGET=foo - override the build target" - @echo " TARGET_LIST=a,b,c - Override target list in builds." + @echo " BUILD_TARGET=foo - Override the build target" + @echo " TARGET_LIST=a,b,c - Override target list in builds" @echo ' EXTRA_CONFIGURE_OPTS="..."' + @echo " J=[0..9]* - Override the -jN parameter for make commands" + @echo " DEBUG=1 - Enable verbose output on host and interactive debugging" + @echo " V=1 - Enable verbose ouput on host and guest commands" + @echo " QEMU=/path/to/qemu - Change path to QEMU binary" vm-build-all: $(addprefix vm-build-, $(IMAGES)) |