More test updates
[idzebra-moved-to-github.git] / test / gils / test1.sh
index 95e2aee..71bbbde 100755 (executable)
@@ -1,5 +1,9 @@
+#!/bin/sh
+# $Id: test1.sh,v 1.5 2003-05-06 20:09:28 adam Exp $
 echo "testing without stored keys (zebra1.cfg)"
 
+sleep 1
+
 echo  "initializing..."
 mkdir -p reg
 rm -f records/esdd000[12].grs # these should not be here, will be created later
@@ -10,7 +14,7 @@ echo "updating..."
 ../../index/zebraidx -l idx.log -c zebra1.cfg update records  || exit 1
 
 echo "killing old server (if any)..."
-test -f zebrasrv.pid && kill -9 `cat zebrasrv.pid`
+test -f zebrasrv.pid && kill `cat zebrasrv.pid`
 rm -f zebrasrv.pid
 rm -f srv.log
 
@@ -18,7 +22,7 @@ echo "starting server..."
 ../../index/zebrasrv -S -c zebra1.cfg -l srv.log tcp:@:9901 &
 sleep 1
 
-echo "cheking it runs..."
+echo "checking it runs..."
 test -f zebrasrv.pid || exit 1
 
 echo "search 1..."
@@ -46,7 +50,6 @@ grep "^Result count: 18$" log || exit 1
 
 echo "stopping server..."
 test -f zebrasrv.pid || exit 1
-kill -9 `cat zebrasrv.pid` || exit 1
+kill `cat zebrasrv.pid` || exit 1
 rm -f zebrasrv.pid
 
-echo "ok"