diff options
author | Kai Blin <kai@samba.org> | 2008-01-30 17:57:32 +0100 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2008-01-30 17:57:32 +0100 |
commit | 5b5d56d84af1657b1aec29c134af5ad6be4348eb (patch) | |
tree | 4250a29f9ab51f696614d47828f747796e04a4af /source3/script | |
parent | 582e224af5e55909e4dfd4051f2e5b5011ec14e1 (diff) | |
download | samba-5b5d56d84af1657b1aec29c134af5ad6be4348eb.tar.gz samba-5b5d56d84af1657b1aec29c134af5ad6be4348eb.tar.bz2 samba-5b5d56d84af1657b1aec29c134af5ad6be4348eb.zip |
ntlm_auth: test should honour configfile option to run on build farm.
(This used to be commit 11c9c1536b153047ba387b9804f34a6555a5ae26)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/test_ntlm_auth_s3.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/script/tests/test_ntlm_auth_s3.sh b/source3/script/tests/test_ntlm_auth_s3.sh index 6a52e59771..6bcb3e2066 100755 --- a/source3/script/tests/test_ntlm_auth_s3.sh +++ b/source3/script/tests/test_ntlm_auth_s3.sh @@ -13,9 +13,9 @@ then exit 0 fi -testit "ntlm_auth" $VALGRIND $SRCDIR/torture/test_ntlm_auth.py $BINDIR/ntlm_auth || failed=`expr $failed + 1` +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 --client-domain=fOo --server-domain=fOo || failed=`expr $failed + 1` +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 |