[Qemu-devel] [RFC PATCH 03/13] tests/tcg: add QEMU_OPT option for test runner

Alex Bennée posted 13 patches 7 years, 2 months ago
Only 12 patches received!
[Qemu-devel] [RFC PATCH 03/13] tests/tcg: add QEMU_OPT option for test runner
Posted by Alex Bennée 7 years, 2 months ago
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>
---
 tests/tcg/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/tcg/Makefile b/tests/tcg/Makefile
index d6a7fee2e7..e7215e8455 100644
--- a/tests/tcg/Makefile
+++ b/tests/tcg/Makefile
@@ -58,6 +58,8 @@ else
 QEMU=../qemu-system-$(TARGET_NAME)
 endif
 
+QEMU_OPTS=
+
 # If TCG debugging is enabled things are a lot slower
 ifeq ($(CONFIG_DEBUG_TCG),y)
 TIMEOUT=45
@@ -108,7 +110,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) $(QEMU_OPTS)")
 
 .PHONY: run
 run: $(RUN_TESTS)
-- 
2.17.1


Re: [Qemu-devel] [RFC PATCH 03/13] tests/tcg: add QEMU_OPT option for test runner
Posted by Richard Henderson 7 years, 2 months ago
On 12/10/18 9:28 AM, Alex Bennée wrote:
> This will allow tests to modify the QEMU invocation with for example
> different -cpu stazas without having to define a whole new set of

"stanzas"

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~