Implemented the 'equivalent' directive for .chr-files.
[idzebra-moved-to-github.git] / test / charmap / test3.sh
1 #!/bin/sh
2 # $id$
3
4 pp=${srcdir:-"."}
5
6 LOG=test2.log
7 rm -f $LOG
8 if ../../index/zebraidx -c $pp/zebra.cfg -l $LOG -V|grep Expat >/dev/null; then
9         ../../index/zebraidx -c $pp/zebra.cfg -l$LOG init
10 else
11         exit 0
12 fi
13 ../../index/zebraidx -c $pp/zebra.cfg -l$LOG update $pp/*.xml
14 ../../index/zebrasrv -c $pp/zebra.cfg -l$LOG unix:socket &
15 sleep 1
16 # search for ae (equivalent test)
17 ../api/testclient unix:socket '@term string ae' >tmp1
18 echo 'Result count: 1' >tmp2
19 kill `cat zebrasrv.pid` || exit 1
20 diff tmp1 tmp2 || exit 2
21 rm -f tmp1 tmp2