diff options
Diffstat (limited to 'Tests/Complex/Library/testConly.c')
-rw-r--r-- | Tests/Complex/Library/testConly.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/Complex/Library/testConly.c b/Tests/Complex/Library/testConly.c index 05ec107..35d6a39 100644 --- a/Tests/Complex/Library/testConly.c +++ b/Tests/Complex/Library/testConly.c @@ -2,5 +2,11 @@ int CsharedFunction() { +#ifndef TEST_C_FLAGS + printf("TEST_C_FLAGS failed\n"); + return 0; +#else + printf("Passed: TEST_C_FLAGS passed\n"); +#endif return 1; } |