diff options
| author | Alexandra Ellwood <lxs@mit.edu> | 2008-03-12 16:50:21 +0000 |
|---|---|---|
| committer | Alexandra Ellwood <lxs@mit.edu> | 2008-03-12 16:50:21 +0000 |
| commit | 9b58ededdc28757a3a203e645094a2cd854434cf (patch) | |
| tree | fc92e9bf3fbd2ff26887abd80bfa3015298417b0 /src/ccapi/test/test_cc_create.c | |
| parent | b03001c9aad53a6ecdc8ebef0493882bad0a826c (diff) | |
| download | krb5-9b58ededdc28757a3a203e645094a2cd854434cf.tar.gz krb5-9b58ededdc28757a3a203e645094a2cd854434cf.tar.xz krb5-9b58ededdc28757a3a203e645094a2cd854434cf.zip | |
Added tests for iterators and NC info. Added test programs for
each test. Cleaned up portability issues introduced by Windows
testing.
ticket: 5909
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20270 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/ccapi/test/test_cc_create.c')
| -rw-r--r-- | src/ccapi/test/test_cc_create.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ccapi/test/test_cc_create.c b/src/ccapi/test/test_cc_create.c new file mode 100644 index 000000000..d591d47be --- /dev/null +++ b/src/ccapi/test/test_cc_create.c @@ -0,0 +1,14 @@ +#include <stdio.h> +#include <limits.h> + +#include "test_ccapi_check.h" +#include "test_ccapi_constants.h" +#include "test_ccapi_v2.h" + +int main (int argc, const char * argv[]) { + + cc_int32 err = ccNoError; + T_CCAPI_INIT; + err = check_cc_create(); + return err; +} |
