mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
d891e59088
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
41 lines
674 B
Bash
Executable File
41 lines
674 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 2 ]; then
|
|
cat <<EOF
|
|
Usage: test_ldb_simple.sh PROTOCOL SERVER [OPTIONS]
|
|
EOF
|
|
exit 1
|
|
fi
|
|
|
|
p=$1
|
|
SERVER=$2
|
|
PREFIX=$3
|
|
shift 2
|
|
options="$*"
|
|
|
|
. $(dirname $0)/subunit.sh
|
|
. "$(dirname "${0}")/common_test_fns.inc"
|
|
|
|
check()
|
|
{
|
|
name="$1"
|
|
shift
|
|
cmdline="$*"
|
|
echo "test: $name"
|
|
$cmdline
|
|
status=$?
|
|
if [ x$status = x0 ]; then
|
|
echo "success: $name"
|
|
else
|
|
echo "failure: $name"
|
|
failed=$(expr $failed + 1)
|
|
fi
|
|
return $status
|
|
}
|
|
|
|
ldbsearch="${VALGRIND} $(system_or_builddir_binary ldbsearch "${BINDIR}")"
|
|
|
|
check "currentTime" $ldbsearch $CONFIGURATION $options --basedn='' -H $p://$SERVER --scope=base currentTime || failed=$(expr $failed + 1)
|
|
|
|
exit $failed
|