summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-05-28 15:15:00 -0700
committerCarl Worth <cworth@cworth.org>2010-05-28 15:15:00 -0700
commitb1249f69fd687441632c2d2e63618627ae9be442 (patch)
treee72c3363681e3847a734e0d2dbc8db9ef56c9ba0
parent792bdcbeee770b14dc833261e7ef3c1d400e5e3f (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.c1
-rw-r--r--tests/061-define-chain-obj-to-func-multi.c5
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 0000000..696cb3a
--- /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 0000000..6dbfd1f
--- /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)