From: Adam Dickmeiss Date: Wed, 10 Mar 2004 17:29:18 +0000 (+0000) Subject: Make cql test work if srcdir != . X-Git-Tag: YAZ.2.0.16.debian.1~15 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=6eef3434bf7d353f060f8a10d3dad6fad38e1edc;hp=76a636f169d66bea401275a41e8149b12584fa22 Make cql test work if srcdir != . --- diff --git a/test/tstcql.sh b/test/tstcql.sh index 2f41aba..8c70905 100755 --- a/test/tstcql.sh +++ b/test/tstcql.sh @@ -1,4 +1,5 @@ #!/bin/sh +srcdir=${srcdir:-.} oIFS="$IFS" IFS=' ' @@ -6,7 +7,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 +19,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