]> git.notmuchmail.org Git - notmuch/blobdiff - test/test-databases/Makefile.local
test: drop upgrade from v1 tests
[notmuch] / test / test-databases / Makefile.local
diff --git a/test/test-databases/Makefile.local b/test/test-databases/Makefile.local
deleted file mode 100644 (file)
index 7aedff7..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# -*- makefile -*-
-
-TEST_DATABASE_MIRROR=https://notmuchmail.org/releases/test-databases
-
-dir := test/test-databases
-
-test_databases := $(dir)/database-v1.tar.xz
-
-%.tar.xz:
-       @exec 1>&2 ;\
-       if command -v wget >/dev/null ;\
-       then set -x; wget -nv -O $@ ${TEST_DATABASE_MIRROR}/$(notdir $@) ;\
-       elif command -v curl >/dev/null ;\
-       then set -x; curl -L -s -o $@ ${TEST_DATABASE_MIRROR}/$(notdir $@) ;\
-       else echo Cannot fetch databases, no wget nor curl available; exit 1 ;\
-       fi
-
-download-test-databases: ${test_databases}
-
-DATACLEAN := $(DATACLEAN) ${test_databases}