X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftstcql.sh;h=526d26070ad8a771bb42e81934a92499d4fdcc30;hb=48e3b97da367521131aa740054e51f30f1d00225;hp=2f41abad854dddebae54544bcbd353ce3053d2a7;hpb=42f18e58ed67f77727cde23bcee44dbd32ed242a;p=yaz-moved-to-github.git diff --git a/test/tstcql.sh b/test/tstcql.sh index 2f41aba..526d260 100755 --- a/test/tstcql.sh +++ b/test/tstcql.sh @@ -1,4 +1,6 @@ #!/bin/sh +# $Id: tstcql.sh,v 1.3 2004-10-01 11:43:43 adam Exp $ +srcdir=${srcdir:-.} oIFS="$IFS" IFS=' ' @@ -6,7 +8,9 @@ secno=0 testno=0 comment=0 ecode=0 -for f in `cat cqlsample`; do +test -f ${srcdir}/cqlsample || exit 1 +test -d cql || mkdir cql +for f in `cat ${srcdir}/cqlsample`; do if echo $f | grep '^#' >/dev/null; then comment=1 else @@ -16,8 +20,8 @@ for f in `cat cqlsample`; do fi comment=0 testno=`expr $testno + 1` - OUT1=cql/$secno.$testno.out - ERR1=cql/$secno.$testno.err + OUT1=${srcdir}/cql/$secno.$testno.out + ERR1=${srcdir}/cql/$secno.$testno.err OUT2=cql/$secno.$testno.out.tmp ERR2=cql/$secno.$testno.err.tmp DIFF=cql/$secno.$testno.diff