diff options
| author | Alexandra Ellwood <lxs@mit.edu> | 2008-03-10 21:41:50 +0000 |
|---|---|---|
| committer | Alexandra Ellwood <lxs@mit.edu> | 2008-03-10 21:41:50 +0000 |
| commit | ff6b476e9eb1e08910745ef0f18fba6bed26f13b (patch) | |
| tree | b79d5d8f9af83cdff6c42eaeb4ef7fb5313bc7e3 /src/ccapi/test/test_ccapi_context.h | |
| parent | 797549cc1429c92e2acc9ada6d8a10645ed78005 (diff) | |
| download | krb5-ff6b476e9eb1e08910745ef0f18fba6bed26f13b.tar.gz krb5-ff6b476e9eb1e08910745ef0f18fba6bed26f13b.tar.xz krb5-ff6b476e9eb1e08910745ef0f18fba6bed26f13b.zip | |
Removed tests for check_cc_context_get_version
cc_context_get_version was part of the original CCAPI v3 documentation but was
never actually implemented. Now that it has been removed from the documentation
we should remove the test.
ticket: new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20266 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/ccapi/test/test_ccapi_context.h')
| -rw-r--r-- | src/ccapi/test/test_ccapi_context.h | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/src/ccapi/test/test_ccapi_context.h b/src/ccapi/test/test_ccapi_context.h index 788bd9ea7..2c3a4ab8f 100644 --- a/src/ccapi/test/test_ccapi_context.h +++ b/src/ccapi/test/test_ccapi_context.h @@ -3,32 +3,30 @@ #include "test_ccapi_globals.h" -int check_cc_initialize(); +int check_cc_initialize(void); cc_int32 check_once_cc_initialize(cc_context_t *out_context, cc_int32 in_version, cc_int32 *out_supported_version, char const **out_vendor, cc_int32 expected_err, const char *description); -int check_cc_context_get_version(); +int check_cc_context_get_version(void); cc_int32 check_once_cc_context_get_version(cc_context_t *out_context, cc_int32 in_version, cc_int32 *out_supported_version, char const **out_vendor, cc_int32 expected_err, const char *description); -int check_get_version(); -cc_int32 check_once_get_version(cc_context_t *out_context, cc_int32 in_version, cc_int32 *out_supported_version, char const **out_vendor, cc_int32 expected_err, const char *description); -int check_cc_context_release(); +int check_cc_context_release(void); cc_int32 check_once_cc_context_release(cc_context_t *out_context, cc_int32 expected_err, const char *description); -int check_cc_context_get_change_time(); +int check_cc_context_get_change_time(void); cc_int32 check_once_cc_context_get_change_time(cc_context_t context, cc_time_t *time, cc_int32 expected_err, const char *description); -int check_cc_context_get_default_ccache_name(); +int check_cc_context_get_default_ccache_name(void); cc_int32 check_once_cc_context_get_default_ccache_name(cc_context_t context, cc_string_t *name, cc_int32 expected_err, const char *description); -int check_cc_context_open_ccache(); +int check_cc_context_open_ccache(void); cc_int32 check_once_cc_context_open_ccache(cc_context_t context, const char *name, cc_ccache_t *ccache, cc_int32 expected_err, const char *description); -int check_cc_context_open_default_ccache(); +int check_cc_context_open_default_ccache(void); cc_int32 check_once_cc_context_open_default_ccache(cc_context_t context, cc_ccache_t *ccache, cc_int32 expected_err, const char *description); -int check_cc_context_create_ccache(); +int check_cc_context_create_ccache(void); cc_int32 check_once_cc_context_create_ccache(cc_context_t context, const char *name, cc_uint32 cred_vers, const char *principal, cc_ccache_t *ccache, cc_int32 expected_err, const char *description); -int check_cc_context_create_default_ccache(); +int check_cc_context_create_default_ccache(void); cc_int32 check_once_cc_context_create_default_ccache(cc_context_t context, cc_uint32 cred_vers, const char *principal, cc_ccache_t *ccache, cc_int32 expected_err, const char *description); -int check_cc_context_create_new_ccache(); +int check_cc_context_create_new_ccache(void); cc_int32 check_once_cc_context_create_new_ccache(cc_context_t context, cc_int32 should_be_default, cc_uint32 cred_vers, const char *principal, cc_ccache_t *ccache, cc_int32 expected_err, const char *description); -int check_cc_context_new_ccache_iterator(); +int check_cc_context_new_ccache_iterator(void); cc_int32 check_once_cc_context_new_ccache_iterator(cc_context_t context, cc_ccache_iterator_t *iterator, cc_int32 expected_err, const char *description); -int check_cc_context_compare(); +int check_cc_context_compare(void); cc_int32 check_once_cc_context_compare(cc_context_t context, cc_context_t compare_to, cc_uint32 *equal, cc_int32 expected_err, const char *description); #endif /* _TEST_CCAPI_CONTEXT_H_ */ |
