summaryrefslogtreecommitdiff
path: root/Utilities/KWIML/test/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'Utilities/KWIML/test/test.c')
-rw-r--r--Utilities/KWIML/test/test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Utilities/KWIML/test/test.c b/Utilities/KWIML/test/test.c
index d71a28452c..131c81f925 100644
--- a/Utilities/KWIML/test/test.c
+++ b/Utilities/KWIML/test/test.c
@@ -16,6 +16,8 @@ extern int test_ABI_C(void);
extern int test_INT_C(void);
extern int test_ABI_CXX(void);
extern int test_INT_CXX(void);
+extern int test_include_C(void);
+extern int test_include_CXX(void);
#ifdef __cplusplus
} // extern "C"
#endif
@@ -26,10 +28,12 @@ int main(void)
#ifdef KWIML_LANGUAGE_C
result = test_ABI_C() && result;
result = test_INT_C() && result;
+ result = test_include_C() && result;
#endif
#ifdef KWIML_LANGUAGE_CXX
result = test_ABI_CXX() && result;
result = test_INT_CXX() && result;
+ result = test_include_CXX() && result;
#endif
return result? 0 : 1;
}