summaryrefslogtreecommitdiff
path: root/src/ccapi/test/test_cc_credentials_iterator_next.c
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2017-07-07 17:03:42 +0000
committerCy Schubert <cy@FreeBSD.org>2017-07-07 17:03:42 +0000
commit33a9b234e7087f573ef08cd7318c6497ba08b439 (patch)
treed0ea40ad3bf5463a3c55795977c71bcb7d781b4b /src/ccapi/test/test_cc_credentials_iterator_next.c
Diffstat (limited to 'src/ccapi/test/test_cc_credentials_iterator_next.c')
-rw-r--r--src/ccapi/test/test_cc_credentials_iterator_next.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ccapi/test/test_cc_credentials_iterator_next.c b/src/ccapi/test/test_cc_credentials_iterator_next.c
new file mode 100644
index 000000000000..ff5f46737ccf
--- /dev/null
+++ b/src/ccapi/test/test_cc_credentials_iterator_next.c
@@ -0,0 +1,16 @@
+#include <stdio.h>
+#include <limits.h>
+
+#include "test_ccapi_check.h"
+#include "test_ccapi_constants.h"
+#include "test_ccapi_context.h"
+#include "test_ccapi_ccache.h"
+#include "test_ccapi_iterators.h"
+
+int main (int argc, const char * argv[]) {
+
+ cc_int32 err = ccNoError;
+ T_CCAPI_INIT;
+ err = check_cc_credentials_iterator_next();
+ return err;
+}