blob: 389132d4a62fea3f1e75f7d63c4d222e06dd63ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
LDB_URL="sqlite3://sqltest.ldb"
export LDB_URL
rm -f sqltest.ldb
if [ -z "$LDBDIR" ]; then
LDBDIR=$(dirname $0)/..
export LDBDIR
fi
PATH=bin:$PATH
export PATH
LDB_SPECIALS=0
export LDB_SPECIALS
$LDBDIR/tests/test-generic.sh
#. $LDBDIR/tests/test-extended.sh
#. $LDBDIR/tests/test-tdb-features.sh
|