test with and without dns-canon

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18516 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-10-17 09:51:34 +00:00
parent aaa8262c03
commit 40811a4487

View File

@@ -94,7 +94,14 @@ exitcode=0
echo "Getting client initial tickets" echo "Getting client initial tickets"
${kinit} --password-file=${objdir}/foopassword user1@${R} || exitcode=1 ${kinit} --password-file=${objdir}/foopassword user1@${R} || exitcode=1
${context} host/lucid.example.org@${R} || exitcode=1 echo plain
${context} host/lucid.example.org@${R} || { exitcode=1 ; echo test failed; }
echo "dns canon on (long name)"
${context} --dns-canon host/lucid.example.org@${R} || \
{ exitcode=1 ; echo test failed; }
echo "dns canon off (long name)"
${context} --no-dns-canon host/lucid.example.org@${R} || \
{ exitcode=1 ; echo test failed; }
echo "killing kdc (${kdcpid})" echo "killing kdc (${kdcpid})"
kill ${kdcpid} 2> /dev/null kill ${kdcpid} 2> /dev/null