From 361f9e3c1f8e00ab87acf4b828cf24a0fe632b7f Mon Sep 17 00:00:00 2001 From: Heikki Levanto Date: Tue, 22 Oct 2002 12:58:35 +0000 Subject: [PATCH] Removed the old test scripts (replaced by test[1-2].sh) --- test/gils/t1.sh | 7 ------- test/gils/t2.sh | 10 ---------- test/gils/t3.sh | 27 -------------------------- test/gils/t4.sh | 5 ----- test/gils/t5.sh | 11 ----------- test/gils/t6.sh | 8 -------- test/gils/t7.sh | 58 ------------------------------------------------------- test/gils/t8.sh | 5 ----- 8 files changed, 131 deletions(-) delete mode 100755 test/gils/t1.sh delete mode 100755 test/gils/t2.sh delete mode 100755 test/gils/t3.sh delete mode 100755 test/gils/t4.sh delete mode 100755 test/gils/t5.sh delete mode 100755 test/gils/t6.sh delete mode 100755 test/gils/t7.sh delete mode 100755 test/gils/t8.sh diff --git a/test/gils/t1.sh b/test/gils/t1.sh deleted file mode 100755 index 4ad77bf..0000000 --- a/test/gils/t1.sh +++ /dev/null @@ -1,7 +0,0 @@ -echo "initializing..." -mkdir -p reg -../../index/zebraidx -l idx.log -c zebra1.cfg init || exit 1 -rm -f records/esdd000[12].grs # these should not be here, will be created later -echo "updating..." -../../index/zebraidx -l idx.log -c zebra1.cfg update records || exit 2 -echo "ok" diff --git a/test/gils/t2.sh b/test/gils/t2.sh deleted file mode 100755 index 2e9b343..0000000 --- a/test/gils/t2.sh +++ /dev/null @@ -1,10 +0,0 @@ -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 zebra1.cfg -l srv.log tcp:@:9901 & -sleep 1 -echo "cheking it runs..." -test -f zebrasrv.pid || exit 1 -echo "ok" diff --git a/test/gils/t3.sh b/test/gils/t3.sh deleted file mode 100755 index dcd33e7..0000000 --- a/test/gils/t3.sh +++ /dev/null @@ -1,27 +0,0 @@ -echo "Checking taht server runs..." -test -f zebrasrv.pid || exit 1 - -echo "search 1..." -../../../yaz/zoom/zoomtst1 localhost:9901 utah > log || exit 3 -grep "^Result count: 17$" log || exit 4 - -echo "search 2..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@or utah the" > log || exit 5 -grep "^Result count: 40$" log || exit 6 - -echo "search 3..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 the" > log || exit 7 -grep "^Result count: 1$" log || exit 8 - -echo "search 4..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 utah" > log || exit 9 -grep "^Result count: 9$" log || exit 10 - -echo "reindexing..." -../../index/zebraidx -l idx.log -c zebra1.cfg update records || exit 11 - -echo "search 5..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 utah" > log || exit 12 -grep "^Result count: 18$" log || exit 14 - -echo "ok" diff --git a/test/gils/t4.sh b/test/gils/t4.sh deleted file mode 100755 index da2cbcf..0000000 --- a/test/gils/t4.sh +++ /dev/null @@ -1,5 +0,0 @@ -echo "stopping server..." -test -f zebrasrv.pid || exit 1 -kill -9 `cat zebrasrv.pid` || exit 2 - -echo "ok" diff --git a/test/gils/t5.sh b/test/gils/t5.sh deleted file mode 100755 index f1e3f29..0000000 --- a/test/gils/t5.sh +++ /dev/null @@ -1,11 +0,0 @@ -rm -f idx.log -echo "init..." -../../index/zebraidx -l idx.log init || exit 1 - -echo "update 1..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 2 - -echo "update 2..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 2 - -echo ok diff --git a/test/gils/t6.sh b/test/gils/t6.sh deleted file mode 100755 index d75d187..0000000 --- a/test/gils/t6.sh +++ /dev/null @@ -1,8 +0,0 @@ -rm -f zebrasrv.pid -rm -f srv.log -echo "starting server..." -../../index/zebrasrv -S -c zebra2.cfg -l srv.log tcp:@:9901 & -sleep 1 -test -f zebrasrv.pid || exit 1 - -echo ok diff --git a/test/gils/t7.sh b/test/gils/t7.sh deleted file mode 100755 index cffde93..0000000 --- a/test/gils/t7.sh +++ /dev/null @@ -1,58 +0,0 @@ -echo "checking server is running..." -test -f zebrasrv.pid || exit 1 - -echo "search 1..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 utah" > log || exit 2 -grep "^Result count: 9$" log || exit 1 - -echo "indexing records..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 3 - -echo "search 2..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 utah" > log || exit 4 -grep "^Result count: 9$" log || exit 1 - -echo "making test records..." -cp records/esdd0006.grs records/esdd0001.grs - -echo "indexing them..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 5 - -echo "search 3..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 utah" > log || exit 6 -grep "^Result count: 10$" log || exit 1 -touch records/esdd0001.grs - -echo "indexing again..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 7 - -echo "search 4..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 utah" > log || exit 8 -grep "^Result count: 10$" log || exit 1 - -echo "making another test record..." -mv records/esdd0001.grs records/esdd0002.grs - -echo "indexing it too..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 9 - -echo "search 5..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 utah" > log || exit 10 -grep "^Result count: 10$" log || exit 1 - -echo "modifying a test record..." -sed 's/UTAH/XYZ/g' records/esdd0002x.grs -mv records/esdd0002x.grs records/esdd0002.grs - -echo "indexing it..." -../../index/zebraidx -l idx.log -c zebra2.cfg update records || exit 11 - -echo "search 6..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 utah" > log || exit 12 -grep "^Result count: 9$" log || exit 1 - -echo "search 7..." -../../../yaz/zoom/zoomtst1 localhost:9901 "@attr 1=4 xyz" > log || exit 13 -grep "^Result count: 1$" log || exit 1 - -echo ok diff --git a/test/gils/t8.sh b/test/gils/t8.sh deleted file mode 100755 index 6df5aa8..0000000 --- a/test/gils/t8.sh +++ /dev/null @@ -1,5 +0,0 @@ -echo "stopping server..." -test -f zebrasrv.pid || exit 1 -kill `cat zebrasrv.pid` || exit 2 - -echo ok -- 1.7.10.4