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
trie index tests addition
[csql.git]
/
test
/
phptests
/
test010.ksh
blob
5c9dc1a9331070eb6251e0be65c729cf2d03a0ea
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
/
dropindextest.php
11
if
[
$?
-ne
0
]
12
then
13
exit
50
;
14
fi
15
exit
0
;
16
17