separating database engine and cache tests
[csql.git] / test / cache / Recovery / test003.ksh
blob8610249c48115154e9742b7d78d7a025ef51b4f9
1 #!/bin/sh
3 #Run this test only under csql/test or on this directory.
4 #Otherwise, it may fail
5 CSQL_CONF=${PWD}/cache/Recovery/csql.conf
6 input=${PWD}/cache/Recovery/createt1.sql
7 REL_PATH=.
8 if [ -s "$input" -a -s "$CSQL_CONF" ]
9 then
10 REL_PATH=${PWD}/cache/Recovery
12 export CSQL_CONFIG_FILE=$REL_PATH/csql.conf
14 isql $DSN < $REL_PATH/createt1.sql > /dev/null 2>&1
16 if [ $? -ne 0 ]
17 then
18 exit 1;
21 # edit /tmp/csql/csqltable.conf
22 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
23 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
24 for (( a=1; a<2; a++ ))
26 echo "1:t$a NULL"
27 done >> /tmp/csql/csqltable.conf
29 $CSQL_INSTALL_ROOT/bin/csqlserver -c >/dev/null 2>&1 &
30 pid=$!
31 sleep 5
33 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
34 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
36 $CSQL_INSTALL_ROOT/bin/csqldump
38 if [ $? -ne 0 ]
39 then
40 exit 5;
43 kill $pid > /dev/null 2>&1
45 isql $DSN < $REL_PATH/drop.sql > /dev/null 2>&1
47 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
48 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
49 exit 0;