X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fgils%2Ftest1.sh;h=682ed786c3fa7e85a14a066ec3f038694dde3b1b;hb=a9eae0225b1a51b0257f80d9da9f95475dd04f53;hp=5ee2b2309685faf0ae3103c6030f3f6b4165210f;hpb=2147978ec217214e2fea9ca2d0a5b089fe0977f4;p=idzebra-moved-to-github.git diff --git a/test/gils/test1.sh b/test/gils/test1.sh index 5ee2b23..682ed78 100755 --- a/test/gils/test1.sh +++ b/test/gils/test1.sh @@ -1,26 +1,28 @@ #!/bin/sh -# $Id: test1.sh,v 1.7 2003-05-24 22:34:48 adam Exp $ +# $Id: test1.sh,v 1.10 2004-09-24 15:03:19 adam Exp $ + +pp=${srcdir:-"."} LOG=test1.log rm -f $LOG echo "initializing..." >>$LOG -mkdir -p reg -rm -f records/esdd000[12].grs # these should not be here, will be created later -../../index/zebraidx -l $LOG -c zebra1.cfg init || exit 1 +test -d reg || mkdir reg +rm -f $pp/records/esdd000[12].grs # these should not be here, will be created later +../../index/zebraidx -l $LOG -c $pp/zebra1.cfg init || exit 1 echo "updating..." >>$LOG -../../index/zebraidx -l $LOG -c zebra1.cfg update records || exit 1 +../../index/zebraidx -l $LOG -c $pp/zebra1.cfg update $pp/records || exit 1 echo "killing old server (if any)..." >>$LOG test -f zebrasrv.pid && kill `cat zebrasrv.pid` echo "starting server..." >>$LOG -../../index/zebrasrv -S -c zebra1.cfg -l $LOG tcp:@:9901 & +../../index/zebrasrv -S -c $pp/zebra1.cfg -l $LOG tcp:@:9901 & sleep 1 echo "checking it runs..." >>$LOG -test -f zebrasrv.pid || exit 1 +test -f zebrasrv.pid || sleep 5 || test -f zebrasrv.pid || exit 1 echo "search 1..." >>$LOG ../api/testclient localhost:9901 utah > log || exit 1 @@ -39,7 +41,7 @@ echo "search 4..." >>$LOG grep "^Result count: 9$" log >/dev/null || exit 1 echo "reindexing..." >>$LOG -../../index/zebraidx -l $LOG -c zebra1.cfg update records || exit 1 +../../index/zebraidx -l $LOG -c $pp/zebra1.cfg update $pp/records || exit 1 echo "search 5..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1