X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fgils%2Ftiming2.sh;h=e34b1c2125fe2071683564beb8351706029eda6c;hb=a9eae0225b1a51b0257f80d9da9f95475dd04f53;hp=a7b5e2b603454fd4bbcecf74508bbf8c2518687b;hpb=3038982ea4d46e1562a4e88029199ca09153a839;p=idzebra-moved-to-github.git diff --git a/test/gils/timing2.sh b/test/gils/timing2.sh index a7b5e2b..e34b1c2 100755 --- a/test/gils/timing2.sh +++ b/test/gils/timing2.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: timing2.sh,v 1.8 2004-06-15 08:06:34 adam Exp $ +# $Id: timing2.sh,v 1.9 2004-06-15 09:43:30 adam Exp $ # Demonstrated that updates depend on file timestamps pp=${srcdir:-"."} @@ -10,7 +10,7 @@ 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 +rm -f $pp/records/esdd000[12].grs # these should not be here, will be created later ../../index/zebraidx -c $pp/zebra2.cfg -l $LOG init || exit 1 touch timeref1 # make an early timestamp @@ -24,30 +24,30 @@ test -f zebrasrv.pid || exit 1 touch timeref2 # make a later timestamp echo " update 1..." >>$LOG -../../index/zebraidx -l $LOG -c $pp/zebra2.cfg update records || exit 1 +../../index/zebraidx -l $LOG -c $pp/zebra2.cfg update $pp/records || exit 1 echo " search 1..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 grep "^Result count: 9$" log >/dev/null || exit 1 echo "making a test record..." >>$LOG -cp records/esdd0006.grs records/esdd0002.grs -touch -r timeref1 records/esdd0002.grs +cp $pp/records/esdd0006.grs $pp/records/esdd0002.grs +touch -r timeref1 $pp/records/esdd0002.grs echo " indexing it..." >>$LOG -../../index/zebraidx -l $LOG -c $pp/zebra2.cfg update records || exit 1 +../../index/zebraidx -l $LOG -c $pp/zebra2.cfg update $pp/records || exit 1 echo " search 2..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 grep "^Result count: 10$" log >/dev/null || exit 1 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' +sed 's/UTAH/XYZ/g' <$pp/records/esdd0002.grs >$pp/records/esdd0002x.grs +mv $pp/records/esdd0002x.grs $pp/records/esdd0002.grs +touch -r timeref1 $pp/records/esdd0002.grs # reset timestamp to 'early' echo " not indexing it..." >>$LOG -../../index/zebraidx -l $LOG -c $pp/zebra2.cfg update records || exit 1 +../../index/zebraidx -l $LOG -c $pp/zebra2.cfg update $pp/records || exit 1 echo " search 3..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 @@ -55,10 +55,10 @@ echo " checking..." >>$LOG grep "^Result count: 10$" log >/dev/null || exit 1 echo " touching its timestamp..." >>$LOG -touch -r timeref2 records/esdd0002.grs # set timestamp to 'late' +touch -r timeref2 $pp/records/esdd0002.grs # set timestamp to 'late' echo " indexing it..." >>$LOG -../../index/zebraidx -l $LOG -c $pp/zebra2.cfg update records || exit 1 +../../index/zebraidx -l $LOG -c $pp/zebra2.cfg update $pp/records || exit 1 echo " search 4..." >>$LOG ../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 @@ -69,6 +69,6 @@ echo "stopping server..." >>$LOG test -f zebrasrv.pid || exit 1 kill `cat zebrasrv.pid` || exit 1 rm -f log timeref[12] -rm -f records/esdd000[12].grs +rm -f $pp/records/esdd000[12].grs rm -f zebrasrv.pid