repo.or.cz
/
csql.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
adding test scripts
[csql.git]
/
test
/
phptests
/
test022.ksh
blob
ec9e711010c8968946c0c5720e273bbb489d30fe
1
#!/bin/ksh
2
3
4
CSQL_CONF=${PWD}/phptests/csql.conf
5
REL_PATH=.
6
if [ -s "$CSQL_CONF" ]
7
then
8
REL_PATH=${PWD}/phptests
9
fi
10
11
php $REL_PATH/parainsert.php
12
if [ $? -ne 0 ]
13
then
14
exit 50;
15
fi
16
exit 0;
17
18