From: Heikki Levanto Date: Tue, 29 Oct 2002 10:39:15 +0000 (+0000) Subject: The bug was solved, these extras no longer needed X-Git-Tag: ZEBRA.1.3.3.Jasper~4 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=76b98cc82d9d4c5f3fa050cd47b88c3f42760061 The bug was solved, these extras no longer needed (updates were skipped because of the low resolution of file timestamps (1 sec), not because of some deep mysterious bug in zebra...) --- diff --git a/test/gils/h2.cfg b/test/gils/h2.cfg deleted file mode 100644 index 58de3d9..0000000 --- a/test/gils/h2.cfg +++ /dev/null @@ -1,19 +0,0 @@ -# Simple Zebra configuration file -# $Id: h2.cfg,v 1.1 2002-10-25 09:10:57 heikki Exp $ -# -# Where the schema files, attribute files, etc are located. -profilePath: .:../../tab:../../../yaz/tab:/usr/local/share/yaz/tab:/usr/share/yaz/tab - -# Files that describe the attribute sets supported. -attset: bib1.att -attset: gils.att -attset: explain.att - -recordtype: grs.sgml - -#storeData: 1 -storeKeys: 1 -recordId: file - -isam: b -register: reg:20M diff --git a/test/gils/h3.sh b/test/gils/h3.sh deleted file mode 100755 index 2b92944..0000000 --- a/test/gils/h3.sh +++ /dev/null @@ -1,79 +0,0 @@ -# h3.sh - studying the "timing" problem - -# timing1.sh - tests that updates are reflected immediately -# in the registers. Repeatedly modifies a record and counts hits. - -echo "Testing timings of updates" -echo " init..." -rm -f idx.log log -rm -f records/esdd000[12].grs # these should not be here, will be created later -../../index/zebraidx -l idx.log init || exit 1 - -echo " killing old server (if any)..." -test -f zebrasrv.pid && kill -9 `cat zebrasrv.pid` -rm -f zebrasrv.pid -rm -f srv.log - -echo " starting server..." -../../index/zebrasrv -S -c h2.cfg -l srv.log tcp:@:9901 & -sleep 1 -test -f zebrasrv.pid || exit 1 - -echo " update 1..." -../../index/zebraidx -l idx.log -c h2.cfg update records || exit 1 - -echo " search 1..." -../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 -grep "^Result count: 9$" log || exit 1 - -echo "making a test record..." -cp records/esdd0006.grs records/esdd0002.grs - -echo " indexing it..." -../../index/zebraidx -l idx.log -c h2.cfg update records || exit 1 - -echo " search 2..." -../testclient localhost:9901 "@attr 1=4 utah" > log || exit 1 -grep "^Result count: 10$" log || exit 1 - -echo " 1a: modifying a test record (xyz)..." -cat records/esdd0002.grs | - sed 's/UTAH/XYZ/g' | - sed 's/ESDD0006/ESDD0002/g' | - sed 's/EARTHQUAKE/TESTRECORD/g' >/tmp/esdd0002x.grs -cat /tmp/esdd0002x.grs >records/esdd0002.grs - -echo " indexing it..." -../../index/zebraidx -l idx.log -c h2.cfg update records/esdd0002.grs || exit 1 -#grep XYZ records/esdd0002.grs # shows that indeed have XYZ in the data - -echo " search 3..." -../testclient localhost:9901 "@attr 1=4 xyz" > log || exit 1 -cat log -grep -q "^Result count: 1$" log || echo "ERROR ---> Result count should have been 1" - -echo "stopping server..." -kill -9 `cat zebrasrv.pid` -sleep 1 - -echo " starting a new server..." -../../index/zebrasrv -S -c h2.cfg -l srv2.log tcp:@:9901 & -sleep 1 -test -f zebrasrv.pid || exit 1 - -echo " search 4..." -../testclient localhost:9901 "@attr 1=4 xyz" > log || exit 1 -cat log -grep -q "^Result count: 1$" log || echo "ERROR ---> Result count should have been 1" - - -echo "stopping server..." -test -f zebrasrv.pid || exit 1 -kill -9 `cat zebrasrv.pid` || exit 1 -rm -f idx.log log -rm -f records/esdd000[12].grs -rm -f zebrasrv.pid -rm -f srv.log -rm -f /tmp/esdd0002x.grs - -echo ok