From: Paul Brossier Date: Wed, 26 Jul 2006 23:46:22 +0000 (+0000) Subject: do not print out for when running tests X-Git-Tag: bzr2git~584 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=26bf9686258e02921c593a53dfee4192331d2d64;p=aubio.git do not print out for when running tests do not print out for when running tests --- diff --git a/examples/tests/Makefile.am b/examples/tests/Makefile.am index c91c690d..0ff34753 100644 --- a/examples/tests/Makefile.am +++ b/examples/tests/Makefile.am @@ -30,7 +30,7 @@ bin_PROGRAMS = \ test-tss run-tests: $(bin_PROGRAMS) - for i in $(bin_PROGRAMS); do echo $$i; time ./$$i 2>&1 > /dev/null; echo $$?; done + @for i in $(bin_PROGRAMS); do echo $$i; time (./$$i 2>&1 > /dev/null; echo $$?); done run-valgrind-tests: $(bin_PROGRAMS) - for i in $(bin_PROGRAMS); do echo $$i; valgrind .libs/lt-$$i 2>&1 | grep ERROR\ SUMMARY -A4; echo $$?; done + @for i in $(bin_PROGRAMS); do echo $$i; valgrind .libs/lt-$$i 2>&1 | grep ERROR\ SUMMARY -A4; echo $$?; done