adding test scripts
[csql.git] / test / tools / csql / test005.ksh
blob20adc3a7affcd736a0d905cc19c73fda6708132e
1 #!/bin/ksh
2 # Test Case
3 # Check all data types and their ranges
5 QUITFILE=${PWD}/tools/csql/quit.sql
6 REL_PATH=.
7 if [ -s "$QUITFILE" ]
8 then
9 REL_PATH=`pwd`/tools/csql
12 if [ "$VALGRIND" = "true" ]
13 then
14 valgrind --tool=memcheck --leak-check=full $CSQL_INSTALL_ROOT/bin/csql -u root -p manager -s ${REL_PATH}/csql4.sql 2> $0.valgr
15 else
16 $CSQL_INSTALL_ROOT/bin/csql -u root -p manager -s ${REL_PATH}/csql4.sql
17 if [ $? -ne 0 ]
18 then
19 exit 1;
23 exit 0;