summaryrefslogtreecommitdiff
path: root/source3/script/tests/test_ntlm_auth_s3.sh
blob: 6c97f2e6504b8e390e829b4c67f7aecb62afed05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

incdir=`dirname $0`
. $incdir/test_functions.sh

failed=0

(/usr/bin/env python --version > /dev/null 2>&1)

if test $? -ne 0;
then
	echo "Python binary not found in path. Skipping ntlm_auth tests."
	exit 0
fi

testit "ntlm_auth" $VALGRIND $SRCDIR/torture/test_ntlm_auth.py $BINDIR/ntlm_auth --configfile=$CONFFILE || failed=`expr $failed + 1`
# This should work even with NTLMv2
testit "ntlm_auth" $VALGRIND $SRCDIR/torture/test_ntlm_auth.py $BINDIR/ntlm_auth --configfile=$CONFFILE --client-domain=fOo --server-domain=fOo || failed=`expr $failed + 1`


testok $0 $failed