File Removed
[csql.git] / test / tools / csqldump / test001.ksh
blob06c339e24091a3f394d85a1cf8ac4a8f8799a62b
1 #!/bin/sh
2 # Test Case
3 # check no option, ?
4 # check whether authentication is working
6 echo "Case 1: With no option:"
7 $CSQL_INSTALL_ROOT/bin/csqldump
8 if [ $? -ne 0 ]
9 then
10 exit 1;
13 echo "Case 2: With ? option:"
14 $CSQL_INSTALL_ROOT/bin/csqldump -?
15 if [ $? -ne 0 ]
16 then
17 exit 1;
19 exit 0;