diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-21 11:22:11 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-21 11:22:11 -0700 |
commit | 6f510a49d2f3271432844d6b7e2bfe459b2126d4 (patch) | |
tree | 7ad316228b4353bbdf0070d61a754b84b29c1a30 /glcpp/tests/054-if-with-macros.c | |
parent | f3eb42d200bb78afae64af6862e2b12396226707 (diff) | |
parent | 2fb30a2e492e466a7b383e8ca430ba7371b443ee (diff) |
Merge Carl's preprocessor into the glcpp subdirectory.
Diffstat (limited to 'glcpp/tests/054-if-with-macros.c')
-rw-r--r-- | glcpp/tests/054-if-with-macros.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/glcpp/tests/054-if-with-macros.c b/glcpp/tests/054-if-with-macros.c new file mode 100644 index 0000000000..3da79a0d96 --- /dev/null +++ b/glcpp/tests/054-if-with-macros.c @@ -0,0 +1,34 @@ +#define one 1 +#define two 2 +#define three 3 +#define five 5 +#if five < two +failure_1 +#else +success_1 +#endif +#if three >= two +success_2 +#else +failure_2 +#endif +#if two + three <= five +success_3 +#else +failure_3 +#endif +#if five - two == three +success_4 +#else +failure_4 +#endif +#if one > three +failure_5 +#else +success_5 +#endif +#if one != five +success_6 +#else +failure_6 +#endif |