Remove select since it can be both search and term command
[pazpar2-moved-to-github.git] / test / test_sort.sh
1 #!/bin/sh
2
3 # srcdir might be set by make
4 srcdir=${srcdir:-"."}
5
6 TEST=`basename $0 .sh`
7
8 # Using test solr target opencontent-solr
9 E=0
10 if test -x ../src/pazpar2; then
11     if ../src/pazpar2 -V |grep icu:enabled >/dev/null; then
12         ${srcdir}/run_pazpar2.sh $TEST
13         E=$?
14     fi
15 fi
16
17 #kill `cat ztest.pid`
18 #rm ztest.pid
19 exit $E
20
21 # Local Variables:
22 # mode:shell-script
23 # sh-indentation: 2
24 # sh-basic-offset: 4
25 # End: