diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-28 15:15:00 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-28 15:15:00 -0700 |
commit | b1249f69fd687441632c2d2e63618627ae9be442 (patch) | |
tree | e72c3363681e3847a734e0d2dbc8db9ef56c9ba0 | |
parent | 792bdcbeee770b14dc833261e7ef3c1d400e5e3f (diff) |
Add two (passing) tests from the take-2 branch.
These two tests were tricky to make work on take-2, but happen to
already eb working here.
-rw-r--r-- | tests/000-content-with-spaces.c | 1 | ||||
-rw-r--r-- | tests/061-define-chain-obj-to-func-multi.c | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/000-content-with-spaces.c b/tests/000-content-with-spaces.c new file mode 100644 index 0000000000..696cb3a74f --- /dev/null +++ b/tests/000-content-with-spaces.c @@ -0,0 +1 @@ +this is four tokens diff --git a/tests/061-define-chain-obj-to-func-multi.c b/tests/061-define-chain-obj-to-func-multi.c new file mode 100644 index 0000000000..6dbfd1f62d --- /dev/null +++ b/tests/061-define-chain-obj-to-func-multi.c @@ -0,0 +1,5 @@ +#define foo(x) success +#define bar foo +#define baz bar +#define joe baz +joe (failure) |