aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2018-12-06 11:09:17 +0000
committerAlex Bennée <alex.bennee@linaro.org>2019-03-12 17:05:21 +0000
commit3d55c026241d2717b3fd97800889c19fad7b6ae8 (patch)
tree9d3bb5401de226a228a4f010cb77e62080d64dea
parente24e66f06d152151cd876210e001b21aa3bb86c8 (diff)
downloadqemu-3d55c026241d2717b3fd97800889c19fad7b6ae8.zip
qemu-3d55c026241d2717b3fd97800889c19fad7b6ae8.tar.gz
qemu-3d55c026241d2717b3fd97800889c19fad7b6ae8.tar.bz2
tests/tcg: add QEMU_OPT option for test runner
This will allow tests to modify the QEMU invocation with for example different -cpu stazas without having to define a whole new set of runner types. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--tests/tcg/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/tcg/Makefile b/tests/tcg/Makefile
index 55feab0..454d0a4 100644
--- a/tests/tcg/Makefile
+++ b/tests/tcg/Makefile
@@ -54,10 +54,13 @@ LDFLAGS=
# The QEMU for this TARGET
ifdef CONFIG_USER_ONLY
QEMU=../qemu-$(TARGET_NAME)
+QEMU_OPTS=
else
QEMU=../qemu-system-$(TARGET_NAME)
+QEMU_OPTS=-monitor none -display none
endif
+
# If TCG debugging is enabled things are a lot slower
ifeq ($(CONFIG_DEBUG_TCG),y)
TIMEOUT=45
@@ -108,7 +111,7 @@ RUN_TESTS=$(patsubst %,run-%, $(TESTS))
RUN_TESTS+=$(EXTRA_RUNS)
run-%: %
- $(call run-test, $<, $(QEMU) $<, "$< on $(TARGET_NAME)")
+ $(call run-test, $<, $(QEMU) $(QEMU_OPTS) $<, "$< on $(TARGET_NAME)")
.PHONY: run
run: $(RUN_TESTS)