From 9e87ef7f745eddf2aed911d60530e84a582ce08a Mon Sep 17 00:00:00 2001 From: Oliver O'Halloran Date: Wed, 13 Nov 2019 17:25:19 +1100 Subject: [PATCH] hw/test: Make tests quieter The physmap tests prints a few hundred lines of: Assigning BAR [8] type:01 index:0 0x0000200000000000 for 0x0000034000000000 Assigning BAR [8] type:02 index:5 0x0000234000000000 for 0x0000002000000000 Make it not do that. Signed-off-by: Oliver O'Halloran --- hw/test/Makefile.check | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/test/Makefile.check b/hw/test/Makefile.check index f9f233c64f99..45eb8072f168 100644 --- a/hw/test/Makefile.check +++ b/hw/test/Makefile.check @@ -15,13 +15,13 @@ $(HW_TEST:%=%-gcov-run) : %-run: % $(call QTEST, TEST-COVERAGE ,$< , $<) $(HW_TEST:%=%-check) : %-check: % - $(call Q, RUN-TEST ,$(VALGRIND) $<, $<) + $(call QTEST, RUN-TEST ,$(VALGRIND) $<, $<) $(HW_TEST) : % : %.c hw/phys-map.o $(call Q, HOSTCC ,$(HOSTCC) $(HOSTCFLAGS) -O0 -g -I include -I . -o $@ $<, $<) $(HW_TEST:%=%-gcov): %-gcov : %.c % - $(call Q, HOSTCC ,$(HOSTCC) $(HOSTCFLAGS) $(HOSTGCOVCFLAGS) -I include -I . -lgcov -o $@ $<, $<) + $(call QTEST, HOSTCC ,$(HOSTCC) $(HOSTCFLAGS) $(HOSTGCOVCFLAGS) -I include -I . -lgcov -o $@ $<, $<) clean: hw-clean