]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tests/data/Makefile: remove 'filecheck' target
authorDaniel Stenberg <daniel@haxx.se>
Thu, 18 Aug 2022 07:09:45 +0000 (09:09 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 18 Aug 2022 09:39:12 +0000 (11:39 +0200)
No practical use anymore since 3c0f4622cdfd6

Closes #9332

tests/data/Makefile.am

index 5b4cb59de029428e591db18318e4756f3abdae7a..e627f16c53cb85f00da8461a72750d3da60531d6 100644 (file)
@@ -29,21 +29,3 @@ test:
 include Makefile.inc
 
 EXTRA_DIST = $(TESTCASES) DISABLED CMakeLists.txt
-
-filecheck:
-       @mkdir test-place; \
-       cp "$(top_srcdir)"/tests/data/test[0-9]* test-place/; \
-       rm -f test-place/*~; \
-       for f in $(EXTRA_DIST); do \
-         if test -f "$(top_srcdir)/tests/data/$$f"; then \
-           rm -f "test-place/$$f"; \
-         else \
-           echo "$$f is listed but missing!"; \
-         fi \
-       done; \
-       echo "Local files not present in EXTRA_DIST:" ; \
-       ls test-place; \
-       ! ls test-place | grep . >/dev/null ; \
-       RC=$$? ; \
-       rm -rf test-place ; \
-       exit $$RC