rename scache to scc

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@25068 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-04-03 04:09:00 +00:00
parent 5c5324f003
commit 92017a2fd1

View File

@@ -625,7 +625,7 @@ main(int argc, char **argv)
test_cache_remove(context, krb5_cc_type_file); test_cache_remove(context, krb5_cc_type_file);
test_cache_remove(context, krb5_cc_type_memory); test_cache_remove(context, krb5_cc_type_memory);
#ifdef USE_SQLITE #ifdef USE_SQLITE
test_cache_remove(context, krb5_cc_type_scache); test_cache_remove(context, krb5_cc_type_scc);
#endif #endif
test_default_name(context); test_default_name(context);
@@ -635,7 +635,7 @@ main(int argc, char **argv)
#if 0 #if 0
test_init_vs_destroy(context, krb5_cc_type_api); test_init_vs_destroy(context, krb5_cc_type_api);
#endif #endif
test_init_vs_destroy(context, krb5_cc_type_scache); test_init_vs_destroy(context, krb5_cc_type_scc);
test_mcc_default(); test_mcc_default();
test_def_cc_name(context); test_def_cc_name(context);
@@ -659,22 +659,22 @@ main(int argc, char **argv)
test_cache_iter(context, krb5_cc_type_memory, 0); test_cache_iter(context, krb5_cc_type_memory, 0);
test_cache_iter(context, krb5_cc_type_file, 0); test_cache_iter(context, krb5_cc_type_file, 0);
test_cache_iter(context, krb5_cc_type_api, 0); test_cache_iter(context, krb5_cc_type_api, 0);
test_cache_iter(context, krb5_cc_type_scache, 0); test_cache_iter(context, krb5_cc_type_scc, 0);
test_cache_iter(context, krb5_cc_type_scache, 1); test_cache_iter(context, krb5_cc_type_scc, 1);
test_copy(context, krb5_cc_type_file, krb5_cc_type_file); test_copy(context, krb5_cc_type_file, krb5_cc_type_file);
test_copy(context, krb5_cc_type_memory, krb5_cc_type_memory); test_copy(context, krb5_cc_type_memory, krb5_cc_type_memory);
test_copy(context, krb5_cc_type_file, krb5_cc_type_memory); test_copy(context, krb5_cc_type_file, krb5_cc_type_memory);
test_copy(context, krb5_cc_type_memory, krb5_cc_type_file); test_copy(context, krb5_cc_type_memory, krb5_cc_type_file);
test_copy(context, krb5_cc_type_scache, krb5_cc_type_file); test_copy(context, krb5_cc_type_scc, krb5_cc_type_file);
test_copy(context, krb5_cc_type_file, krb5_cc_type_scache); test_copy(context, krb5_cc_type_file, krb5_cc_type_scc);
test_copy(context, krb5_cc_type_scache, krb5_cc_type_memory); test_copy(context, krb5_cc_type_scc, krb5_cc_type_memory);
test_copy(context, krb5_cc_type_memory, krb5_cc_type_scache); test_copy(context, krb5_cc_type_memory, krb5_cc_type_scc);
test_move(context, krb5_cc_type_file); test_move(context, krb5_cc_type_file);
test_move(context, krb5_cc_type_memory); test_move(context, krb5_cc_type_memory);
test_move(context, krb5_cc_type_kcm); test_move(context, krb5_cc_type_kcm);
test_move(context, krb5_cc_type_scache); test_move(context, krb5_cc_type_scc);
test_prefix_ops(context, "FILE:/tmp/foo", &krb5_fcc_ops); test_prefix_ops(context, "FILE:/tmp/foo", &krb5_fcc_ops);
test_prefix_ops(context, "FILE", &krb5_fcc_ops); test_prefix_ops(context, "FILE", &krb5_fcc_ops);