On 11/02/19 15:32, Kevin Wolf wrote: > $(patsubst %, check-%, $(check-unit-y) $(check-speed-y)): check-%: % > $(if $(CONFIG_GCOV),@rm -f *.gcda */*.gcda */*/*.gcda */*/*/*.gcda,) > $(call quiet-command, \ > MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} \ > gtester $(GTESTER_OPTIONS) -m=$(SPEED) $*,"GTESTER","$*") > $(if $(CONFIG_GCOV),@for f in $(gcov-files-$(subst tests/,,$*)-y) > $(gcov-files-generic-y); do \ > echo Gcov report for $$f:;\ > $(GCOV) $(GCOV_OPTIONS) $$f -o `dirname $$f`; \ > done,) > > So it used quiet-command (but I'm okay with changing this) and it set > MALLOC_PERTURB_ (I think this would still be nice to have).
Yes, of course. I'll send a real patch. Paolo