mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
24 lines
441 B
Bash
Executable File
24 lines
441 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
cat <<EOF
|
|
Usage: test_ntlm_auth_diagnostics.sh NTLM_AUTH DOMAIN USERNAME PASSWORD
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
NTLM_AUTH=$1
|
|
DOMAIN=$2
|
|
USERNAME=$3
|
|
PASSWORD=$4
|
|
shift 4
|
|
|
|
ADDARGS="$*"
|
|
|
|
incdir=`dirname $0`/../../../testprogs/blackbox
|
|
. $incdir/subunit.sh
|
|
|
|
testit "ntlm_auth" $VALGRIND $NTLM_AUTH --domain=$DOMAIN --username=$USERNAME --password=$PASSWORD --diagnostics $ADDARGS || failed=`expr $failed + 1`
|
|
|
|
testok $0 $failed
|