summaryrefslogtreecommitdiffstats
path: root/src/ccapi/test/test_cc_create.c
diff options
context:
space:
mode:
authorAlexandra Ellwood <lxs@mit.edu>2008-03-12 16:50:21 +0000
committerAlexandra Ellwood <lxs@mit.edu>2008-03-12 16:50:21 +0000
commit9b58ededdc28757a3a203e645094a2cd854434cf (patch)
treefc92e9bf3fbd2ff26887abd80bfa3015298417b0 /src/ccapi/test/test_cc_create.c
parentb03001c9aad53a6ecdc8ebef0493882bad0a826c (diff)
downloadkrb5-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.c14
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;
+}