gomtest_static_SOURCES = gomtest.c
gomtest_static_LDADD = ../gedcom/.libs/libgedcom.a ../gom/.libs/libgedcom_gom.a
+DMALLOC_LOG = dmalloc.log
-TEST_SCRIPT=test_script test_gom test_gom_static
+TEST_SCRIPT=test_script test_gom
TESTS := $(wildcard $(srcdir)/*.test)
EXTRA_DIST=$(TEST_SCRIPT) $(TESTS)
all-local:
- @rm -f testgedcom.out dmalloc.log
+ @rm -f testgedcom.out $(DMALLOC_LOG)
check-% : %.test all-local
@srcdir=$(srcdir); export srcdir; \
exit; \
fi; \
srcdir=$(srcdir); export srcdir; \
- GOM_DMALLOC_TEST=1; export GOM_DMALLOC_TEST; \
+ GOM_DMALLOC_TEST=$(DMALLOC_LOG); export GOM_DMALLOC_TEST; \
if $(TESTS_ENVIRONMENT) ./$<; then \
echo "Test succeeded"; \
else \
options="-q"
extra_options=
dmalloc=`which dmalloc`
+dmalloc_tmp=dmalloc.env
while [ $# -gt 0 ]
do
srcdir=.
options=$extra_options
else
- testfile=input/$file
+ testfile=$srcdir/input/$file
options="$options $extra_options"
fi
builddir=`pwd`
-export GCONV_PATH=../ansel:$GCONV_PATH
+export GCONV_PATH=.:$GCONV_PATH
export LD_LIBRARY_PATH=$builddir/../gedcom/.libs:$builddir/../gom/.libs:$LD_LIBRARY_PATH
-cp $builddir/../ansel/.libs/ANSI_Z39.47.so ../ansel
+ln -s $srcdir/../gedcom.enc .
+ln -s $builddir/../ansel/.libs/ANSI_Z39.47.so .
+ln -s $srcdir/../ansel/gconv-modules .
rm -f core
if [ "$GOM_DMALLOC_TEST" = "" ]
then
$builddir/gomtest $options $testfile
else
- $dmalloc -b -l dmalloc.log -i 100 low > dmalloc.env
- . dmalloc.env
- rm dmalloc.env
+ $dmalloc -b -l $GOM_DMALLOC_TEST -i 100 low > $dmalloc_tmp
+ . $dmalloc_tmp
+ rm $dmalloc_tmp
$builddir/gomtest_static $options $testfile
fi
result=$?
-rm ../ansel/ANSI_Z39.47.so
+rm gedcom.enc
+rm ANSI_Z39.47.so
+rm gconv-modules
if [ "$result" -eq "$expected_result" -a ! -r core ]
then
exit 0
srcdir=.
options=$extra_options
else
- testfile=input/$file
+ testfile=$srcdir/input/$file
options="$options $extra_options"
fi
builddir=`pwd`
-export GCONV_PATH=../ansel:$GCONV_PATH
+export GCONV_PATH=.:$GCONV_PATH
export LD_LIBRARY_PATH=$builddir/../gedcom/.libs:$LD_LIBRARY_PATH
-cp $builddir/../ansel/.libs/ANSI_Z39.47.so ../ansel
+ln -s $srcdir/../gedcom.enc .
+ln -s $builddir/../ansel/.libs/ANSI_Z39.47.so .
+ln -s $srcdir/../ansel/gconv-modules .
rm -f core
$builddir/testgedcom $options $testfile
result=$?
-rm ../ansel/ANSI_Z39.47.so
+rm gedcom.enc
+rm ANSI_Z39.47.so
+rm gconv-modules
if [ "$result" -eq "$expected_result" -a ! -r core ]
then
exit 0