From: | Shawn M Emery <shawn.emery@oracle.com> |
To: | krb5-bugs@mit.edu |
Subject: | New failure in t_sn2princ.py |
Date: | Sat, 28 May 2016 00:53:48 -0600 |
It looks like there were some changes in the kerberos.org domain in the
past week, which causes regression test failure:
...
src/tests/t_sn2princ.py no
*** Failure: Expected SVC/kerberos-org.mit.edu@R3, got
SVC/kerborg-app-1.mit.edu@R3
And indeed the PTR RR is now pointing to kerborg-app-1.mit.edu:
49.62.9.18.in-addr.arpa name = kerborg-app-1.mit.edu.
which as of last week was pointing to kerberos-org.mit.edu. If the
change in DNS was intentional then the following patch resolves the issue:
src/tests/t_sn2princ.py:
@@ -69,7 +69,7 @@
# and reverse resolving to these names.
oname = 'ptr-mismatch.kerberos.org'
fname = 'www.kerberos.org'
-rname = 'kerberos-org.mit.edu'
+rname = 'kerborg-app-1.mit.edu'
# Verify forward resolution before testing for it.
try:
else please ignore this bug.
Shawn.
--