diff options
Diffstat (limited to 'Tests/CompileOptions/main.cpp')
-rw-r--r-- | Tests/CompileOptions/main.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Tests/CompileOptions/main.cpp b/Tests/CompileOptions/main.cpp new file mode 100644 index 0000000..90740f1 --- /dev/null +++ b/Tests/CompileOptions/main.cpp @@ -0,0 +1,20 @@ +#ifndef TEST_DEFINE +# error Expected definition TEST_DEFINE +#endif + +#ifndef NEEDS_ESCAPE +# error Expected definition NEEDS_ESCAPE +#endif + +#ifdef DO_GNU_TESTS +# ifndef TEST_DEFINE_GNU +# error Expected definition TEST_DEFINE_GNU +# endif +#endif + +#include <string.h> + +int main() +{ + return strcmp(NEEDS_ESCAPE, "E$CAPE") == 0 ? 0 : 1; +} |