diff options
author | Greg Hudson <ghudson@mit.edu> | 2012-04-26 04:33:48 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2012-04-26 04:33:48 +0000 |
commit | d85fbcebd2d4880972e8565a3d5aba492ef59431 (patch) | |
tree | 2eea96479aea9dcc09d1545caa8f6a046a26d56f /src/tests/t_general.py | |
parent | 60ccf0f7dc305b89179df2454b95a021fbcb09cb (diff) | |
download | krb5-d85fbcebd2d4880972e8565a3d5aba492ef59431.tar.gz krb5-d85fbcebd2d4880972e8565a3d5aba492ef59431.tar.xz krb5-d85fbcebd2d4880972e8565a3d5aba492ef59431.zip |
Flip the default of start_kadmind in k5test.py
Very few Python tests need kadmind, so it makes more sense to have to
turn it on than to have to turn it off.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25825 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests/t_general.py')
-rwxr-xr-x | src/tests/t_general.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/t_general.py b/src/tests/t_general.py index 046f957f43..cbad32d4ca 100755 --- a/src/tests/t_general.py +++ b/src/tests/t_general.py @@ -1,7 +1,7 @@ #!/usr/bin/python from k5test import * -for realm in multipass_realms(create_host=False, start_kadmind=False): +for realm in multipass_realms(create_host=False): # Check that kinit fails appropriately with the wrong password. output = realm.run_as_client([kinit, realm.user_princ], input='wrong\n', expected_code=1) @@ -22,7 +22,7 @@ for realm in multipass_realms(create_host=False, start_kadmind=False): # Test kinit against kdb keytab realm.run_as_master([kinit, "-k", "-t", "KDB:", realm.user_princ]) -realm = K5Realm(create_host=False, start_kadmind=False) +realm = K5Realm(create_host=False) # Create a policy and see if it survives a dump/load. realm.run_kadminl('addpol fred') |