ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/fbintf/testsuite/runtest.sh
(Generate patch)

Comparing ibx/trunk/fbintf/testsuite/runtest.sh (file contents):
Revision 308 by tony, Sat Jul 18 10:26:30 2020 UTC vs.
Revision 359 by tony, Tue Dec 7 09:37:32 2021 UTC

# Line 10 | Line 10 | EMPLOYEEDB=employee
10   NEWDBNAME=$TESTOUTDIR/testsuite1.fdb
11   NEWDBNAME2=$TESTOUTDIR/testsuite2.fdb
12   BAKFILE=$TESTOUTDIR/testsuite.gbk
13 + if [ -z "$FPC" ]; then
14 +  export FPC=fpc
15 + fi
16  
17   cd `dirname $0`
18   mkdir -p $TESTOUTDIR
19   chmod 777 $TESTOUTDIR
20 < export FPCDIR=/usr/lib/fpc/`fpc -iV`
20 > export FPCDIR=/usr/lib/fpc/`$FPC -iV`
21   fpcmake
22   make clean
23   make
24   if [ -x testsuite ]; then
25 +  if [ -n "$FIREBIRD" ]; then
26 +    export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$FIREBIRD/lib"
27 +  fi
28    echo ""
29    echo "Starting Testsuite"
30    echo ""
31 <  ./testsuite -u $USERNAME -p $PASSWORD -e $EMPLOYEEDB -n $NEWDBNAME -s $NEWDBNAME2 -b $BAKFILE -o testout.log $1
31 >  ./testsuite -u $USERNAME -p $PASSWORD -e $EMPLOYEEDB -n $NEWDBNAME -s $NEWDBNAME2 -b $BAKFILE -o testout.log $@
32    echo "Comparing results with reference log"
33    echo ""
34    if grep 'ODS Major Version = 11' testout.log >/dev/null; then
35      diff FB2reference.log testout.log >diff.log
36    elif grep 'ODS Major Version = 12' testout.log >/dev/null; then
37      diff FB3reference.log testout.log >diff.log
38 +  else
39 +    diff FB4reference.log testout.log >diff.log
40    fi
41    cat diff.log
42   else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines