Implemented the 'equivalent' directive for .chr-files.
[idzebra-moved-to-github.git] / test / charmap / test1.sh
1 #!/bin/sh
2 # $Id: test1.sh,v 1.3.2.1 2005-03-11 21:10:12 adam Exp $
3
4 pp=${srcdir:-"."}
5
6 LOG=test1.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 # ae
17 ../api/testclient unix:socket '@term string æ' >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