diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-04-29 13:07:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:51:45 -0500 |
commit | ba204fe35089edc1a4910deda9ba1c44878e4cee (patch) | |
tree | c0da29982952013e56754167b201674ec56b2fcb | |
parent | d17ae2fe823cbc37ce94bdb1eb47648ffb9ea28a (diff) | |
download | samba-ba204fe35089edc1a4910deda9ba1c44878e4cee.tar.gz samba-ba204fe35089edc1a4910deda9ba1c44878e4cee.tar.bz2 samba-ba204fe35089edc1a4910deda9ba1c44878e4cee.zip |
r22569: use the $SERVER_IP for the LDAP-* tests because I'll later change
$SERVER from localhost to localdc.
we should find out why this is needed and add explicit name resolution
in related code...
metze
(This used to be commit 8336e85aad03deb6fffe89c0a770fb05c2319c8e)
-rwxr-xr-x | source4/script/tests/test_ldap.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/script/tests/test_ldap.sh b/source4/script/tests/test_ldap.sh index cc293244fb..4a31451a01 100755 --- a/source4/script/tests/test_ldap.sh +++ b/source4/script/tests/test_ldap.sh @@ -6,18 +6,18 @@ incdir=`dirname $0` p=ldap for options in "" "--option=socket:testnonblock=true" "-U\$USERNAME%\$PASSWORD --option=socket:testnonblock=true" "-U\$USERNAME%\$PASSWORD"; do - plantest "TESTING PROTOCOL $p with options $options" dc ../testprogs/blackbox/test_ldb.sh $p \$SERVER $options + plantest "TESTING PROTOCOL $p with options $options" dc ../testprogs/blackbox/test_ldb.sh $p \$SERVER_IP $options done # see if we support ldaps if grep ENABLE_GNUTLS.1 include/config.h > /dev/null; then p=ldaps for options in "" "-U\$USERNAME%\$PASSWORD"; do - plantest "TESTING PROTOCOL $p with options $options" dc ../testprogs/blackbox/test_ldb.sh $p \$SERVER $options + plantest "TESTING PROTOCOL $p with options $options" dc ../testprogs/blackbox/test_ldb.sh $p \$SERVER_IP $options done fi for t in LDAP-CLDAP LDAP-BASIC LDAP-SCHEMA LDAP-UPTODATENESS do - plantest "$t" dc bin/smbtorture $TORTURE_OPTIONS "-U\$USERNAME%\$PASSWORD" //\$SERVER/_none_ $t + plantest "$t" dc bin/smbtorture $TORTURE_OPTIONS "-U\$USERNAME%\$PASSWORD" //\$SERVER_IP/_none_ $t done # only do the ldb tests when not in quick mode - they are quite slow, and ldb |