diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-26 16:18:05 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-26 16:18:05 -0700 |
commit | a8ea26d7c94526518670e54f44336f433d0ac77c (patch) | |
tree | 7dde80a98f3ad380dfe9809d9252508e6597d032 | |
parent | 00f1ec421edf73516fdcfbbdb651f13eeefe8f08 (diff) |
Add two tests developed on the take-2 branch.
The define-chain-obj-to-func-parens-in-text test passes here while the
if-with-macros test fails.
-rw-r--r-- | tests/054-if-with-macros.c | 34 | ||||
-rw-r--r-- | tests/055-define-chain-obj-to-func-parens-in-text.c | 3 |
2 files changed, 37 insertions, 0 deletions
diff --git a/tests/054-if-with-macros.c b/tests/054-if-with-macros.c new file mode 100644 index 0000000..3da79a0 --- /dev/null +++ b/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 diff --git a/tests/055-define-chain-obj-to-func-parens-in-text.c b/tests/055-define-chain-obj-to-func-parens-in-text.c new file mode 100644 index 0000000..00f2c23 --- /dev/null +++ b/tests/055-define-chain-obj-to-func-parens-in-text.c @@ -0,0 +1,3 @@ +#define failure() success +#define foo failure +foo() |