From: Tom Yu Date: Tue, 8 Feb 2000 00:09:43 +0000 (+0000) Subject: * lib/lib.t: Call kinit and kdestroy with -5 flag to accomodate X-Git-Tag: krb5-1.2-beta1~98 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6610d5d86b17a9412615c9467a1d071b6917fe1f;p=krb5.git * lib/lib.t: Call kinit and kdestroy with -5 flag to accomodate new behavior. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12022 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/kadm5/unit-test/ChangeLog b/src/lib/kadm5/unit-test/ChangeLog index e65978aa7..f8eb89a4e 100644 --- a/src/lib/kadm5/unit-test/ChangeLog +++ b/src/lib/kadm5/unit-test/ChangeLog @@ -1,3 +1,8 @@ +2000-02-07 Tom Yu + + * lib/lib.t: Call kinit and kdestroy with -5 flag to accomodate + new behavior. + 1999-10-26 Tom Yu * Makefile.in: Clean up usage of CFLAGS, CPPFLAGS, DEFS, DEFINES, diff --git a/src/lib/kadm5/unit-test/lib/lib.t b/src/lib/kadm5/unit-test/lib/lib.t index a8b6ca670..ad3e22cee 100644 --- a/src/lib/kadm5/unit-test/lib/lib.t +++ b/src/lib/kadm5/unit-test/lib/lib.t @@ -235,7 +235,7 @@ proc kinit { princ pass {opts ""} } { global env; global KINIT - eval spawn $KINIT $opts $princ + eval spawn $KINIT -5 $opts $princ expect { -re {Password for .*: $} {send "$pass\n"} @@ -262,7 +262,7 @@ proc kdestroy {} { if {[info exists errorInfo]} { set saveErrorInfo $errorInfo } - catch "system $KDESTROY 2>/dev/null" + catch "system $KDESTROY -5 2>/dev/null" if {[info exists saveErrorCode]} { set errorCode $saveErrorCode } elseif {[info exists errorCode]} {