aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/glsl-es-1.00/compiler/shaders/while.frag
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/glsl-es-1.00/compiler/shaders/while.frag')
-rw-r--r--tests/spec/glsl-es-1.00/compiler/shaders/while.frag15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/spec/glsl-es-1.00/compiler/shaders/while.frag b/tests/spec/glsl-es-1.00/compiler/shaders/while.frag
new file mode 100644
index 00000000..2c32a60a
--- /dev/null
+++ b/tests/spec/glsl-es-1.00/compiler/shaders/while.frag
@@ -0,0 +1,15 @@
+// [config]
+// expect_result: fail
+// glsl_version: 1.00
+//
+// # NOTE: Config section was auto-generated from file
+// # NOTE: 'glslparser.tests' at git revision
+// # NOTE: 6cc17ae70b70d150aa1751f8e28db7b2a9bd50f0
+// [end config]
+
+void main()
+{
+ float f;
+ while(f) { // condition should be boolean
+ }
+}