1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

ldb: Add tests for the python api

Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Matthieu Patou 2013-01-08 00:28:03 -08:00 committed by Andrew Bartlett
parent 2dc9c072cb
commit 9206eaaf5d

View File

@ -4,9 +4,12 @@ BINDIR=$1
if [ -n "$TEST_DATA_PREFIX" ]; then
LDB_URL="$TEST_DATA_PREFIX/tdbtest.ldb"
PYDESTDIR="$TEST_DATA_PREFIX"
else
LDB_URL="tdbtest.ldb"
PYDESTDIR="/tmp"
fi
mkdir $PYDESTDIR/tmp
export LDB_URL
PATH=$BINDIR:$PATH
@ -35,3 +38,8 @@ $VALGRIND ldbadd $LDBDIR/tests/init.ldif || exit 1
. $LDBDIR/tests/test-tdb-features.sh
. $LDBDIR/tests/test-controls.sh
which python >/dev/null 2>&1
if [ $? -eq 0 ]; then
SELFTEST_PREFIX=$PYDESTDIR PYTHONPATH=$BINDIR/python python $LDBDIR/tests/python/api.py
fi