summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-03-12 11:57:09 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-03-12 12:04:35 +0000
commit55cd514ca380d5ad4d3a72accc8d4f4c6f131850 (patch)
treedcf091a1d6e24f6a59e0418af3419499a8c57dfc
parente272f713a24bd0a13d57906cac8c256b6f9439cf (diff)
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.
-rw-r--r--check.mak6
1 files changed, 3 insertions, 3 deletions
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:"; \