aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-09-30 22:58:24 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-09-30 22:58:24 +0000
commit9ca26444296a88cee90ef32262d169015e595930 (patch)
treeba6640a4965e90fcd7416bb79887534428b44867
parentec08e2f9f24da5974be1ab222c5703fd9fb3722f (diff)
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!
-rw-r--r--tests/data/Makefile.am17
1 files changed, 16 insertions, 1 deletions
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
+