X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fgils%2Ftiming2.sh;h=f9a78fe711bfb379178f80bdaf48d68e31ccc5c5;hb=965edd26d5f3cb170e8a02fee134bc19c9c615f4;hp=097454c6a3bcd570199ba8a3343d0fa12848300f;hpb=403ae06f9dbf8180008ccc8128f642203d41ae50;p=idzebra-moved-to-github.git diff --git a/test/gils/timing2.sh b/test/gils/timing2.sh index 097454c..f9a78fe 100755 --- a/test/gils/timing2.sh +++ b/test/gils/timing2.sh @@ -1,72 +1,72 @@ #!/bin/sh -# $Id: timing2.sh,v 1.6 2003-05-21 14:39:22 adam Exp $ +# $Id: timing2.sh,v 1.7 2003-05-24 22:34:48 adam Exp $ # Demonstrated that updates depend on file timestamps -echo "Testing timings of updates" -echo " init..." -rm -f idx.log log timeref[12] +LOG=timing2.log + +rm -f $LOG + +echo " init..." >>$LOG +rm -f log timeref[12] rm -f records/esdd000[12].grs # these should not be here, will be created later -../../index/zebraidx -c zebra2.cfg -l idx.log init || exit 1 +../../index/zebraidx -c zebra2.cfg -l $LOG init || exit 1 touch timeref1 # make an early timestamp -echo " killing old server (if any)..." +echo " killing old server (if any)..." >>$LOG test -f zebrasrv.pid && kill -9 `cat zebrasrv.pid` -rm -f zebrasrv.pid -rm -f srv.log -echo " starting server..." -../../index/zebrasrv -S -c zebra2.cfg -l srv.log tcp:@:9901 & +echo " starting server..." >>$LOG +../../index/zebrasrv -S -c zebra2.cfg -l $LOG tcp:@:9901 & sleep 1 test -f zebrasrv.pid || exit 1 touch timeref2 # make a later timestamp -echo " update 1..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1 +echo " update 1..." >>$LOG +../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1 -echo " search 1..." +echo " search 1..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 -grep "^Result count: 9$" log || exit 1 +grep "^Result count: 9$" log >/dev/null || exit 1 -echo "making a test record..." +echo "making a test record..." >>$LOG cp records/esdd0006.grs records/esdd0002.grs touch -r timeref1 records/esdd0002.grs -echo " indexing it..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1 +echo " indexing it..." >>$LOG +../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1 -echo " search 2..." +echo " search 2..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 -grep "^Result count: 10$" log || exit 1 +grep "^Result count: 10$" log >/dev/null || exit 1 -echo " modifying a test record (xyz)..." +echo " modifying a test record (xyz)..." >>$LOG sed 's/UTAH/XYZ/g' records/esdd0002x.grs mv records/esdd0002x.grs records/esdd0002.grs touch -r timeref1 records/esdd0002.grs # reset timestamp to 'early' -echo " not indexing it..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1 +echo " not indexing it..." >>$LOG +../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1 -echo " search 3..." +echo " search 3..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 -echo " checking..." -grep "^Result count: 10$" log || exit 1 +echo " checking..." >>$LOG +grep "^Result count: 10$" log >/dev/null || exit 1 -echo " touching its timestamp..." +echo " touching its timestamp..." >>$LOG touch -r timeref2 records/esdd0002.grs # set timestamp to 'late' -echo " indexing it..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 1 +echo " indexing it..." >>$LOG +../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1 -echo " search 4..." +echo " search 4..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 -echo " checking..." -grep "^Result count: 9$" log || exit 1 +echo " checking..." >>$LOG +grep "^Result count: 9$" log >/dev/null || exit 1 -echo "stopping server..." +echo "stopping server..." >>$LOG test -f zebrasrv.pid || exit 1 kill `cat zebrasrv.pid` || exit 1 -rm -f idx.log log timeref[12] +rm -f log timeref[12] rm -f records/esdd000[12].grs rm -f zebrasrv.pid -rm -f srv.log