summaryrefslogtreecommitdiffstats
path: root/Utilities/KWIML/test/test_int_C.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-12-17 19:56:40 (GMT)
committerBrad King <brad.king@kitware.com>2015-12-17 19:56:40 (GMT)
commit12293371ee0f3b930afee8d328415968eb8201e6 (patch)
tree25d0d679620e4129a2bbe6e1c8338a3a1fa9fd23 /Utilities/KWIML/test/test_int_C.c
parent55b21d072e2df9a35a354fd33e8cf2d0c3bd22be (diff)
parent3fdbb0a806f67f10ea8428e03a4523d08d2b083c (diff)
downloadCMake-12293371ee0f3b930afee8d328415968eb8201e6.zip
CMake-12293371ee0f3b930afee8d328415968eb8201e6.tar.gz
CMake-12293371ee0f3b930afee8d328415968eb8201e6.tar.bz2
Merge branch 'upstream-KWIML' into import-kwiml
* upstream-KWIML: KWIML 2015-12-09 (43f9f8d0)
Diffstat (limited to 'Utilities/KWIML/test/test_int_C.c')
-rw-r--r--Utilities/KWIML/test/test_int_C.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/Utilities/KWIML/test/test_int_C.c b/Utilities/KWIML/test/test_int_C.c
new file mode 100644
index 0000000..fe8ee8e
--- /dev/null
+++ b/Utilities/KWIML/test/test_int_C.c
@@ -0,0 +1,19 @@
+/*
+ Copyright Kitware, Inc.
+ Distributed under the OSI-approved BSD 3-Clause License.
+ See accompanying file Copyright.txt for details.
+*/
+#include "test.h"
+#include "../include/kwiml/int.h"
+#include "test_int_format.h"
+#ifndef KWIML_INT_VERSION
+# error "KWIML_INT_VERSION not defined!"
+#endif
+int test_int_C(void)
+{
+ if(!test_int_format())
+ {
+ return 0;
+ }
+ return 1;
+}