Added compatibility for PAF 4.
[gedcom-parse.git] / t / input / bogus.ged
1 ## Process this file with automake to produce Makefile.in
2 # Make sure the following lines don't change at release...
3 # $blaId: bogus.ged,v 1.1 2002/11/01 08:38:39 verthezp Exp $
4 # $blaName:  $
5
6 SUBDIRS=src input output .
7
8 DMALLOC_LOG = dmalloc.log
9 TESTS := $(wildcard $(srcdir)/*.test)
10
11 EXTRA_DIST=$(TESTS)
12
13 TESTS_ENVIRONMENT=ICONV_PATH=@ICONV_PATH@
14
15 all-local:
16         @rm -f *.out $(DMALLOC_LOG)
17
18 check-% :       %.test all-local
19         @srcdir=$(srcdir); export srcdir; \
20         if $(TESTS_ENVIRONMENT) ./$<; then \
21           echo "Test succeeded"; \
22         else \
23           echo "Test failed"; \
24         fi
25
26 check-dmalloc-%:        %.test all-local
27         @if [ "@EXTRA_PROGS@" = "" ]; then \
28           echo "Please run './configure --with-dmalloc' first"; \
29           exit; \
30         fi; \
31         srcdir=$(srcdir); export srcdir; \
32         GOM_DMALLOC_TEST=$(DMALLOC_LOG); export GOM_DMALLOC_TEST; \
33         if $(TESTS_ENVIRONMENT) ./$<; then \
34           echo "Test succeeded"; \
35         else \
36           echo "Test failed"; \
37         fi
38