test wrapunwrap

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24784 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-02-22 23:26:27 +00:00
parent e09576af2f
commit dfebb92702

View File

@@ -177,24 +177,28 @@ echo "======test context building"
for mech in krb5 spnego ; do
echo "${mech} no-mutual"
${context} --mech-type=${mech} \
--wrapunwrap \
--name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo "test failed"; }
echo "${mech} mutual"
${context} --mech-type=${mech} \
--mutual \
--wrapunwrap \
--name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo "test failed"; }
echo "${mech} delegate"
${context} --mech-type=${mech} \
--delegate \
--wrapunwrap \
--name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo "test failed"; }
echo "${mech} mutual delegate"
${context} --mech-type=${mech} \
--mutual --delegate \
--wrapunwrap \
--name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo "test failed"; }
done
@@ -208,6 +212,7 @@ for mech in krb5 ; do
--mech-type=${mech} \
--mutual \
--dce-style \
--wrapunwrap \
--name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo "test failed"; }