mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
2ad8e1443d
- propogate errors to the ldbadd command line tool - use the rdn_name module when testing the tdb backend to allow the same test code to correctly test the ldap and non-ldap backends (This used to be commit dd82c474a123d90329bda653a4cb73c93e087b15)
32 lines
484 B
Bash
Executable File
32 lines
484 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -n "$TEST_DATA_PREFIX" ]; then
|
|
LDB_URL="$TEST_DATA_PREFIX/tdbtest.ldb"
|
|
else
|
|
LDB_URL="tdbtest.ldb"
|
|
fi
|
|
export LDB_URL
|
|
|
|
PATH=bin:$PATH
|
|
export PATH
|
|
|
|
rm -f $LDB_URL*
|
|
|
|
if [ -z "$LDBDIR" ]; then
|
|
LDBDIR=`dirname $0`/..
|
|
export LDBDIR
|
|
fi
|
|
|
|
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
|