diff options
author | Brad King <brad.king@kitware.com> | 2011-11-17 15:16:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-11-17 15:16:57 (GMT) |
commit | aaf376594cf4ae1d541189a2789382db47aa5d7b (patch) | |
tree | 84cc3aa6990bbcd37333d00a490764f70c405bd2 /Utilities/KWIML/test/test.c | |
parent | 21469b65dd9238b1737acfcd57886f83578ecab7 (diff) | |
parent | 9ccd639ad70c65b844f6610c5ae08a63e25f6806 (diff) | |
download | CMake-aaf376594cf4ae1d541189a2789382db47aa5d7b.zip CMake-aaf376594cf4ae1d541189a2789382db47aa5d7b.tar.gz CMake-aaf376594cf4ae1d541189a2789382db47aa5d7b.tar.bz2 |
Merge branch 'upstream-kwiml' into update-KWIML
Diffstat (limited to 'Utilities/KWIML/test/test.c')
-rw-r--r-- | Utilities/KWIML/test/test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Utilities/KWIML/test/test.c b/Utilities/KWIML/test/test.c index d71a284..131c81f 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; } |