Add an expected file for 094-divide-by-zero-short-circuit
authorCarl Worth <cworth@cworth.org>
Thu, 14 Apr 2011 21:35:11 +0000 (14:35 -0700)
committerCarl Worth <cworth@cworth.org>
Thu, 14 Apr 2011 21:42:52 +0000 (14:42 -0700)
The expected file here captures the current behavior of glcpp (which
is to generate a division-by-zero error) for this case.

It's easy to argue that it should be short-circuiting the evaluation
and not generating the diagnostic (which happens to be what gcc does).
But it doesn't seem like we should force this behavior on our
pre-processor, (and, as always, the GLSL specification of the
pre-processor is too vague on this point).

src/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c
src/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c.expected [new file with mode: 0644]

index a9c6f36def8be06613f94a8820535b05b664d3c6..04497b1791319a6f00941114268c3e9d5a4024bc 100644 (file)
@@ -1,2 +1,13 @@
+/* glcpp is generating a division-by-zero error for this case.  It's
+ * easy to argue that it should be short-circuiting the evaluation and
+ * not generating the diagnostic (which happens to be what gcc does).
+ * But it doesn't seem like we should force this behavior on our
+ * pre-processor, (and, as always, the GLSL specification of the
+ * pre-processor is too vague on this point).
+ *
+ * If a short-circuit evaluation optimization does get added to the
+ * pre-processor then it would legitimate to update the expected file
+ * for this test.
+*/
 #if 1 || (1 / 0)
 #endif
diff --git a/src/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c.expected b/src/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c.expected
new file mode 100644 (file)
index 0000000..84fdc50
--- /dev/null
@@ -0,0 +1,15 @@
+0:12(17): preprocessor error: division by 0 in preprocessor directive
+
+
+
+
+
+
+
+
+
+
+
+
+