From 40811a4487d547dbb02213799839aefd74e946cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Tue, 17 Oct 2006 09:51:34 +0000 Subject: [PATCH] test with and without dns-canon git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18516 ec53bebd-3082-4978-b11e-865c3cabbd6b --- tests/gss/check-context.in | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/gss/check-context.in b/tests/gss/check-context.in index 283f06757..ca067b710 100644 --- a/tests/gss/check-context.in +++ b/tests/gss/check-context.in @@ -94,7 +94,14 @@ exitcode=0 echo "Getting client initial tickets" ${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})" kill ${kdcpid} 2> /dev/null