chiark / gitweb /
i18n: dgit: Reorganise quilt differences message generation
[dgit.git] / tests / Makefile
index 84942848feb7f7d1e347cb321e05bc3a5e355b2c..31eb7b62456e91692ac7c1e4b99eefb87026a1ba 100644 (file)
@@ -9,13 +9,13 @@ TESTNAMES := $(notdir $(TESTSCRIPTS))
 all: $(foreach t,$(TESTNAMES),tests/tmp/$t.ok)
        @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";               \