mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
ldb: Add tests for the python api
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
2dc9c072cb
commit
9206eaaf5d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user