mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
9b0273faa7
shfmt -f lib/ldb/ | xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
39 lines
571 B
Bash
Executable File
39 lines
571 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BINDIR=$1
|
|
|
|
if [ -n "$TEST_DATA_PREFIX" ]; then
|
|
LDB_URL="$TEST_DATA_PREFIX/tdbtest.ldb"
|
|
PYDESTDIR="$TEST_DATA_PREFIX"
|
|
else
|
|
LDB_URL="tdbtest.ldb"
|
|
fi
|
|
export LDB_URL
|
|
|
|
PATH=$BINDIR:$PATH
|
|
export PATH
|
|
|
|
if [ -z "$LDBDIR" ]; then
|
|
LDBDIR=$(dirname $0)/..
|
|
export LDBDIR
|
|
fi
|
|
|
|
cd $LDBDIR
|
|
|
|
rm -f $LDB_URL*
|
|
|
|
cat <<EOF | $VALGRIND ldbadd || exit 1
|
|
dn: @MODULES
|
|
@LIST: rdn_name
|
|
EOF
|
|
|
|
$VALGRIND ldbadd $LDBDIR/tests/init.ldif || exit 1
|
|
|
|
. $LDBDIR/tests/test-generic.sh
|
|
|
|
. $LDBDIR/tests/test-extended.sh
|
|
|
|
. $LDBDIR/tests/test-tdb-features.sh
|
|
|
|
. $LDBDIR/tests/test-controls.sh
|