Fixes for make distcheck.
authorPeter Verthez <Peter.Verthez@advalvas.be>
Mon, 9 Sep 2002 18:03:26 +0000 (18:03 +0000)
committerPeter Verthez <Peter.Verthez@advalvas.be>
Mon, 9 Sep 2002 18:03:26 +0000 (18:03 +0000)
t/Makefile.am
t/test_gom
t/test_script

index 626019e8cfbd36496694cf4f857474702dd57b7f..aa8f237ea38dc4450822a6f3f472f2c7a3c5e02a 100644 (file)
@@ -22,14 +22,15 @@ gomtest_LDFLAGS = -L ../gedcom/.libs -L ../gom/.libs -lgedcom_gom -lgedcom
 
 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; \
@@ -45,7 +46,7 @@ check-dmalloc-%:      %.test all-local
          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 \
index dd0d0969cfd16fa23d469961074e8c74a2456ea7..9c0b0ceaba08315e5fa2fe611db72e2931b8c7bc 100755 (executable)
@@ -5,6 +5,7 @@
 options="-q"
 extra_options=
 dmalloc=`which dmalloc`
+dmalloc_tmp=dmalloc.env
 
 while [ $# -gt 0 ]
 do
@@ -29,26 +30,30 @@ then
   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
index f8f365236629109247fbe1d02b5fc9f0757c87a4..0623403ac034204c30243a2731ccbad575fbfabb 100755 (executable)
@@ -28,18 +28,22 @@ then
   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