blob: c23bb03e6b4597f310354750f272849e3369bba5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
if [ $# -ne 0 ]; then
cat <<EOF
Usage: test_swig.sh
EOF
exit 1;
fi
incdir=`dirname $0`
. $incdir/test_functions.sh
failed=0
export PYTHONPATH=lib/tdb/swig:lib/ldb/swig:scripting/swig:$PYTHONPATH
export LD_LIBRARY_PATH=bin:$LD_LIBRARY_PATH
scripting/swig/torture/torture_tdb.py || failed=`expr $failed + 1`
scripting/swig/torture/torture_ldb.py || failed=`expr $failed + 1`
testok $0 $failed
|