blob: 0cef318d98a5748817343fac2c7adc20e6b633fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/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
|