diff options
author | Tom Yu <tlyu@mit.edu> | 2001-04-27 01:58:48 +0000 |
---|---|---|
committer | Tom Yu <tlyu@mit.edu> | 2001-04-27 01:58:48 +0000 |
commit | 1877c7b56da44b7dc02529addd740c858688d7de (patch) | |
tree | 0c743ab133bf9a4a43b17f28d237ef80c2b192b7 /src/tests | |
parent | 2ce979d79acf5b894e92d5d4aa44823ddd01566f (diff) | |
download | krb5-1877c7b56da44b7dc02529addd740c858688d7de.tar.gz krb5-1877c7b56da44b7dc02529addd740c858688d7de.tar.xz krb5-1877c7b56da44b7dc02529addd740c858688d7de.zip |
* v4gssftp.exp: Allow for "no credentials cache found" error minor
code from GSSAPI.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13212 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/dejagnu/krb-standalone/ChangeLog | 5 | ||||
-rw-r--r-- | src/tests/dejagnu/krb-standalone/v4gssftp.exp | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/tests/dejagnu/krb-standalone/ChangeLog b/src/tests/dejagnu/krb-standalone/ChangeLog index ac2448eae..ea428c3b4 100644 --- a/src/tests/dejagnu/krb-standalone/ChangeLog +++ b/src/tests/dejagnu/krb-standalone/ChangeLog @@ -1,3 +1,8 @@ +2001-04-26 Tom Yu <tlyu@mit.edu> + + * v4gssftp.exp: Allow for "no credentials cache found" error minor + code from GSSAPI. + 2000-11-08 Tom Yu <tlyu@mit.edu> * v4gssftp.exp: Fix to handle some cases of krb4 failure prior to diff --git a/src/tests/dejagnu/krb-standalone/v4gssftp.exp b/src/tests/dejagnu/krb-standalone/v4gssftp.exp index f3f321d22..e77de780b 100644 --- a/src/tests/dejagnu/krb-standalone/v4gssftp.exp +++ b/src/tests/dejagnu/krb-standalone/v4gssftp.exp @@ -185,7 +185,10 @@ proc v4ftp_test { } { expect -re "Using authentication type GSSAPI; ADAT must follow" expect "GSSAPI accepted as authentication type" expect "GSSAPI error major: Miscellaneous failure" - expect "GSSAPI error minor: Unsupported credentials cache format version number" + expect { + "GSSAPI error minor: Unsupported credentials cache format version number" {} + "GSSAPI error minor: No credentials cache file found" {} + } expect "GSSAPI error: initializing context" expect "GSSAPI authentication failed" expect -re "Using authentication type KERBEROS_V4; ADAT must follow" |