From 9ca26444296a88cee90ef32262d169015e595930 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 30 Sep 2007 22:58:24 +0000 Subject: Added test536 that was accidentally missing. I also wrote up a new makefile target called 'filecheck' so that if you run 'make filecheck' in this directory it'll check if the local files are also mentioned in the Makefile.am so that they are properly included in release archives! --- tests/data/Makefile.am | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am index 994e5dfd1..83326d12e 100644 --- a/tests/data/Makefile.am +++ b/tests/data/Makefile.am @@ -44,4 +44,19 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \ test409 test613 test614 test700 test701 test702 test704 test705 test703 \ test706 test707 test350 test351 test352 test353 test289 test540 test354 \ test231 test1000 test1001 test1002 test1003 test1004 test1005 test1006 \ - test615 test1007 test541 test1010 test1011 test1012 test542 test543 + test615 test1007 test541 test1010 test1011 test1012 test542 test543 test536 + +filecheck: + @mkdir test-place; \ + cp test[0-9]* test-place/; \ + for f in $(EXTRA_DIST); do \ + if test -f $$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; \ + rm -rf test-place + -- cgit v1.2.3