Refactored common parts into test_prologue.sh and test_bulk.sh.
[gedcom-parse.git] / t / src / test_script
index 46804cb03a867b66e717dd6bdbf25175ed1b95b4..3753da40b644ded15a3319ff6a8d3c343d8ed1af 100755 (executable)
@@ -2,86 +2,28 @@
 # $Id$
 # $Name$
 
-options="-q"
-extra_options=
-
-while [ $# -gt 0 ]
-do
-  case "$1" in
-    -*) extra_options="$extra_options $1";;
-    *)  break;;
-  esac
-  shift
-done
-
-test_name=$1
-expected_result=$2
-file=$3
-if [ -z "$test_name" ]
-then
-  test_name=check
-fi
-if [ -z "$expected_result" ]
+builddir=`pwd`
+if [ -z "$srcdir" ]
 then
-  expected_result=0
+  srcdir=.
 fi
 
-# For use outside Makefile
+. $srcdir/src/test_prologue.sh
+
+file=$1
+
 if [ -z "$srcdir" ]
 then
   testfile=$file
-  srcdir=.
-  options=$extra_options
 else
   case $file in
     ./*) testfile=$file ;;
     *)   testfile=$srcdir/input/$file ;;
   esac
-  options="$options $extra_options"
 fi
 
-outfile=$test_name.out
-logfile=check.out
-reffile=$srcdir/output/$test_name.ref
-options="$options -o $outfile"
-
-builddir=`pwd`
-ltcmd="$builddir/../libtool --mode=execute -dlopen $builddir/../gedcom/libgedcom.la"
-GCONV_PATH=.:$GCONV_PATH
-export GCONV_PATH
-LANG=C
-export LANG
-ln -s $srcdir/../data/gedcom.enc .
-ln -s $builddir/../iconv/glibc/.libs/ANSI_Z39.47.so .
-ln -s $srcdir/../iconv/glibc/gconv-modules .
-rm -f core
-echo "======================================================">> $logfile
-echo "Performing test '$test_name'" >> $logfile
-$ltcmd $GEDCOM_TESTENV $builddir/src/testgedcom $options $testfile
-result=$?
-rm gedcom.enc
-rm ANSI_Z39.47.so
-rm gconv-modules
+test_program=testgedcom
+test_libs=$builddir/../gedcom/libgedcom.la
+test_args=$testfile
 
-echo "Result is $result (expected: $expected_result)" >> $logfile
-if [ "$result" -ne "$expected_result" ]
-then
-  echo "Not the expected return value!" >> $logfile
-  exit 1
-else
-  if [ -r core ]
-  then
-    echo "Core file generated!" >> $logfile
-    exit 1
-  else
-    if diff $outfile $reffile >/dev/null 2>>$logfile
-    then
-      echo "Output agrees with reference output" >> $logfile
-      rm $outfile
-      exit 0
-    else
-      echo "Differences with reference output detected!" >> $logfile
-      exit 1
-    fi
-  fi
-fi
+. $srcdir/src/test_bulk.sh