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
windows changes
[csql.git]
/
test
/
phptests
/
test004.ksh
blob
93b985ec07481d8bbf79c67ce2a8e9b70e299c0c
1
#!/bin/ksh
2
3
CSQL_CONF
=
${PWD}
/
phptests
/
csql.conf
4
REL_PATH
=
.
5
if
[
-s
"
$CSQL_CONF
"
]
6
then
7
REL_PATH
=
${PWD}
/
phptests
8
fi
9
10
php
$REL_PATH
/
nulltest.php
11
if
[
$?
-ne
0
]
12
then
13
exit
50
;
14
fi
15
exit
0
;
16
17