summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tests/dejagnu/krb-standalone/ChangeLog4
-rw-r--r--src/tests/dejagnu/krb-standalone/kadmin.exp10
2 files changed, 14 insertions, 0 deletions
diff --git a/src/tests/dejagnu/krb-standalone/ChangeLog b/src/tests/dejagnu/krb-standalone/ChangeLog
index e9fc30970..d01c3e9ac 100644
--- a/src/tests/dejagnu/krb-standalone/ChangeLog
+++ b/src/tests/dejagnu/krb-standalone/ChangeLog
@@ -1,3 +1,7 @@
+Wed Dec 13 15:28:17 1995 Mark Eichin <eichin@cygnus.com>
+
+ * kadmin.exp: test that kadmin_modify doesn't corrupt key entries.
+
Sat Oct 7 08:02:08 1995 Ezra Peisach <epeisach@kangaroo.mit.edu>
* sample.exp: Make changes to deal with NetBSD expect. Similar to
diff --git a/src/tests/dejagnu/krb-standalone/kadmin.exp b/src/tests/dejagnu/krb-standalone/kadmin.exp
index 3cd9fec8c..dd98854fb 100644
--- a/src/tests/dejagnu/krb-standalone/kadmin.exp
+++ b/src/tests/dejagnu/krb-standalone/kadmin.exp
@@ -746,6 +746,16 @@ proc kadmin_test { } {
|| ![kadmin_delete testprinc1/instance]} {
return
}
+ # now test modify changes.
+ if {![kadmin_add testuser testpw] \
+ || ![kinit testuser testpw 0] \
+ || ![kdestroy] \
+ || ![kadmin_modify testuser maxlife=2500] \
+ || ![kinit testuser testpw 0] \
+ || ![kdestroy] \
+ || ![kadmin_delete testuser]} {
+ return
+ }
verbose "kadmin_test succeeded"
}