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 307 by tony, Tue Dec 6 10:33:46 2016 UTC vs.
Revision 308 by tony, Sat Jul 18 10:26:30 2020 UTC

# Line 6 | Line 6
6   TESTOUTDIR=/tmp/fbintf-testsuite
7   USERNAME=SYSDBA
8   PASSWORD=masterkey
9 < EMPLOYEEDB=localhost:employee
10 < NEWDBNAME=localhost:$TESTOUTDIR/testsuite1.fdb
11 < NEWDBNAME2=localhost:$TESTOUTDIR/testsuite2.fdb
9 > EMPLOYEEDB=employee
10 > NEWDBNAME=$TESTOUTDIR/testsuite1.fdb
11 > NEWDBNAME2=$TESTOUTDIR/testsuite2.fdb
12   BAKFILE=$TESTOUTDIR/testsuite.gbk
13  
14   cd `dirname $0`
# Line 25 | Line 25 | if [ -x testsuite ]; then
25    ./testsuite -u $USERNAME -p $PASSWORD -e $EMPLOYEEDB -n $NEWDBNAME -s $NEWDBNAME2 -b $BAKFILE -o testout.log $1
26    echo "Comparing results with reference log"
27    echo ""
28 <  diff reference.log testout.log >diff.log
28 >  if grep 'ODS Major Version = 11' testout.log >/dev/null; then
29 >    diff FB2reference.log testout.log >diff.log
30 >  elif grep 'ODS Major Version = 12' testout.log >/dev/null; then
31 >    diff FB3reference.log testout.log >diff.log
32 >  fi
33    cat diff.log
34   else
35    echo "Unable to run test suite"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines