glcpp: Add tests for line continuation
authorCarl Worth <cworth@cworth.org>
Wed, 5 Dec 2012 21:36:31 +0000 (13:36 -0800)
committerCarl Worth <cworth@cworth.org>
Fri, 11 Jan 2013 21:55:41 +0000 (13:55 -0800)
First we test that line continuations are honored within a comment, (as
recently changed in glcpp), then we test that line continuations can be
disabled via an option within the context. This is tested via the new support
for a test-specific command-line option passed to glcpp.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/glsl/glcpp/tests/115-line-continuations.c [new file with mode: 0644]
src/glsl/glcpp/tests/115-line-continuations.c.expected [new file with mode: 0644]
src/glsl/glcpp/tests/116-disable-line-continuations.c [new file with mode: 0644]
src/glsl/glcpp/tests/116-disable-line-continuations.c.expected [new file with mode: 0644]

diff --git a/src/glsl/glcpp/tests/115-line-continuations.c b/src/glsl/glcpp/tests/115-line-continuations.c
new file mode 100644 (file)
index 0000000..105590d
--- /dev/null
@@ -0,0 +1,9 @@
+// This comment continues to the next line, hiding the define \
+#define CONTINUATION_UNSUPPORTED
+
+#ifdef CONTINUATION_UNSUPPORTED
+failure
+#else
+success
+#endif
+
diff --git a/src/glsl/glcpp/tests/115-line-continuations.c.expected b/src/glsl/glcpp/tests/115-line-continuations.c.expected
new file mode 100644 (file)
index 0000000..f67ba1c
--- /dev/null
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+success
+
+
+
diff --git a/src/glsl/glcpp/tests/116-disable-line-continuations.c b/src/glsl/glcpp/tests/116-disable-line-continuations.c
new file mode 100644 (file)
index 0000000..83d5ddf
--- /dev/null
@@ -0,0 +1,13 @@
+// glcpp-args: --disable-line-continuations
+
+// This comments ends with a backslash \\
+#define NO_CONTINUATION
+
+#ifdef NO_CONTINUATION
+success
+#else
+failure
+#endif
+
+
+
diff --git a/src/glsl/glcpp/tests/116-disable-line-continuations.c.expected b/src/glsl/glcpp/tests/116-disable-line-continuations.c.expected
new file mode 100644 (file)
index 0000000..9b9a8c5
--- /dev/null
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+success
+
+
+
+
+
+
+