From 96c25b4797edb048ca7fb8dab4d79e3176384e47 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Fri, 5 Mar 2010 19:30:32 +0000 Subject: Add a message parameter to k5test's success(), to briefly indicate the scope of test scripts. Only displayed when verbose is set. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23768 dc483132-0cff-0310-8789-dd5450dbe970 --- src/tests/t_anonpkinit.py | 2 +- src/tests/t_general.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tests') diff --git a/src/tests/t_anonpkinit.py b/src/tests/t_anonpkinit.py index 4ed03d974..e75cf38e1 100644 --- a/src/tests/t_anonpkinit.py +++ b/src/tests/t_anonpkinit.py @@ -31,4 +31,4 @@ realm.addprinc('WELLKNOWN/ANONYMOUS') realm.kinit('@%s' % realm.realm, flags=['-n']) realm.klist('WELLKNOWN/ANONYMOUS@WELLKNOWN:ANONYMOUS') -success() +success('Anonymous PKINIT.') diff --git a/src/tests/t_general.py b/src/tests/t_general.py index fb0649d57..cb2fcbc74 100755 --- a/src/tests/t_general.py +++ b/src/tests/t_general.py @@ -11,7 +11,7 @@ for realm in multipass_realms(create_host=False): if 'fred\n' not in output: fail('Policy not preserved across dump/load.') - # Check that kinit fails appropriatel with the wrong password. + # Check that kinit fails appropriately with the wrong password. output = realm.run_as_client([kinit, realm.user_princ], input='wrong\n', expected_code=1) if 'Password incorrect while getting initial credentials' not in output: @@ -45,4 +45,4 @@ for realm in multipass_realms(create_host=False): if 'Key: vno 258,' not in output: fail('Expected vno not seen in kadmin.local output') -success() +success('Dump/load, FAST kinit, kdestroy, kvno wrapping.') -- cgit