From: Ken Raeburn Date: Wed, 19 Oct 2005 22:42:20 +0000 (+0000) Subject: This fixes an all-too-frequent nightly-testing failure on Tru64 X-Git-Tag: ms-bug-test-20060525~105 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ffbb446429fc1917ef3a815bfab52907683bec7d;p=krb5.git This fixes an all-too-frequent nightly-testing failure on Tru64 * default.exp (setup_krb5_conf): Don't include a non-listening KDC port in the client's config file. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17434 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/tests/dejagnu/config/ChangeLog b/src/tests/dejagnu/config/ChangeLog index 82028c7c8..cc348ee32 100644 --- a/src/tests/dejagnu/config/ChangeLog +++ b/src/tests/dejagnu/config/ChangeLog @@ -1,3 +1,8 @@ +2005-10-19 Ken Raeburn + + * default.exp (setup_krb5_conf): Don't include a non-listening KDC + port in the client's config file. + 2005-09-07 Ken Raeburn * default.exp: Initialize can_get_root to yes. diff --git a/src/tests/dejagnu/config/default.exp b/src/tests/dejagnu/config/default.exp index c3fd29425..abb7b794a 100644 --- a/src/tests/dejagnu/config/default.exp +++ b/src/tests/dejagnu/config/default.exp @@ -913,8 +913,14 @@ proc setup_krb5_conf { {type client} } { puts $conffile "" puts $conffile "\[realms\]" puts $conffile " $REALMNAME = \{" - # I hope nothing's listening on 15294... - puts $conffile " kdc = $hostname:[expr 6 + $portbase]" + # There's probably nothing listening here. It would be a good + # test for the handling of a non-responsive KDC address. However, + # on some systems, like Tru64, we often wind up with the client's + # socket bound to this address, causing our request to appear in + # our incoming queue as if it were a response, which causes test + # failures. If we were running the client and KDC on different + # hosts, this would be okay.... + #puts $conffile " kdc = $hostname:[expr 6 + $portbase]" puts $conffile " kdc = $hostname:[expr 1 + $portbase]" puts $conffile " admin_server = $hostname:[expr 4 + $portbase]" puts $conffile " kpasswd_server = $hostname:[expr 5 + $portbase]"