From: Tim-Philipp Müller Date: Fri, 12 Mar 2010 11:57:09 +0000 (+0000) Subject: check.mak: fix 'make check-valgrind' X-Git-Tag: upstream/20130618~154 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=55cd514ca380d5ad4d3a72accc8d4f4c6f131850;p=platform%2Fupstream%2Fgst-common.git check.mak: fix 'make check-valgrind' Don't use @ on a continuation line, that will lead to syntax errors. Also replace some spaces with tabs. --- diff --git a/check.mak b/check.mak index 4a13504..0abd609 100644 --- a/check.mak +++ b/check.mak @@ -107,13 +107,13 @@ forever: $(TESTS) valgrind: $(TESTS) @echo "Valgrinding tests ..." @failed=0; \ - @for t in $(filter-out $(VALGRIND_TESTS_DISABLE),$(TESTS)); do \ + for t in $(filter-out $(VALGRIND_TESTS_DISABLE),$(TESTS)); do \ $(MAKE) $$t.valgrind; \ if test "$$?" -ne 0; then \ - echo "Valgrind error for test $$t"; \ + echo "Valgrind error for test $$t"; \ failed=`expr $$failed + 1`; \ whicht="$$whicht $$t"; \ - fi; \ + fi; \ done; \ if test "$$failed" -ne 0; then \ echo "$$failed tests had leaks or errors under valgrind:"; \