Philippe Mathieu-Daudé <f4...@amsat.org> writes: > This allow a one liner from fresh repository clone, i.e.: > > ./configure && make -j check-qtest-aarch64
TIL -j doesn't need a number and GNU Make has a -l option ;-) Reviewed-by: Alex Bennée <alex.ben...@linaro.org> > > Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org> > --- > tests/Makefile.include | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/Makefile.include b/tests/Makefile.include > index 77da9b7f4b..f7c8f3eddb 100644 > --- a/tests/Makefile.include > +++ b/tests/Makefile.include > @@ -823,7 +823,7 @@ GCOV_OPTIONS = -n $(if $(V),-f,) > # gtester tests, possibly with verbose output > > .PHONY: $(patsubst %, check-qtest-%, $(QTEST_TARGETS)) > -$(patsubst %, check-qtest-%, $(QTEST_TARGETS)): check-qtest-%: > $(check-qtest-y) > +$(patsubst %, check-qtest-%, $(QTEST_TARGETS)): check-qtest-%: > subdir-%-softmmu $(check-qtest-y) > $(if $(CONFIG_GCOV),@rm -f *.gcda */*.gcda */*/*.gcda */*/*/*.gcda,) > $(call quiet-command,QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \ > QTEST_QEMU_IMG=qemu-img$(EXESUF) \ -- Alex Bennée