chiark / gitweb /
i18n: i18n-diff-auditor: fix multi-arg handling
[dgit.git] / tests / Makefile
index d6f78dc819a4cb63bd3e7d6a8d0ce8d91fc502f4..31eb7b62456e91692ac7c1e4b99eefb87026a1ba 100644 (file)
@@ -7,17 +7,18 @@ TESTSCRIPTS ?= $(shell tests/enumerate-tests)
 TESTNAMES := $(notdir $(TESTSCRIPTS))
 
 all: $(foreach t,$(TESTNAMES),tests/tmp/$t.ok)
-       @echo "ALL PASSED"
+       @echo "ALL PASSED$${DGIT_TESTS_PROGRESSIVE+ AT SOME POINT}"
 
-tests/tmp/%.ok:
+tests/tmp/%.ok: tests/tests/%
 ifeq ($(DGIT_TEST_RETRY_COUNT),)
-       tests/tests/$* >tests/tmp/$*.log 2>&1
+       $(DGIT_TEST_RUN_PFX) tests/tests/$* >tests/tmp/$*.log 2>&1
 else
        @for retry in $$( seq 1 $(DGIT_TEST_RETRY_COUNT) ); do          \
                echo "[$$retry] $*";                                    \
-               tests/tests/$* >tests/tmp/$*.$$retry.log 2>&1;          \
+       $(DGIT_TEST_RUN_PFX) tests/tests/$* >tests/tmp/$*.$$retry.log 2>&1; \
                rc=$$?;                                                 \
                if [ $$rc = 0 ]; then exit 0; fi;                       \
                echo >&2 "[$$retry] $* TEST FAILED $$rc";               \
        done; exit $$rc
 endif
+       @touch $@