summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2018-07-26 09:56:37 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2018-07-26 10:04:30 +0100
commite93761ae8a48c2492c3eec035c82bc3dca5e634e (patch)
tree5b9a1691a9100e096fb1ea0febca3cf9b38a8607 /tests/Makefile
parentd7e20af364775278c1f7f2398c8debdb0af8fb40 (diff)
test suite: Drop dependency arrangement for tests/tmp
run-all makes the directory now adays so this is not needed. It's going to be harmful for --progressive, since it would make make want to rerun things every time tests/tmp/ is updated. Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 44b7458..d6f78dc 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -9,11 +9,7 @@ TESTNAMES := $(notdir $(TESTSCRIPTS))
all: $(foreach t,$(TESTNAMES),tests/tmp/$t.ok)
@echo "ALL PASSED"
-tests/tmp:
- mkdir -p $@
-
-
-tests/tmp/%.ok: tests/tmp
+tests/tmp/%.ok:
ifeq ($(DGIT_TEST_RETRY_COUNT),)
tests/tests/$* >tests/tmp/$*.log 2>&1
else