summaryrefslogtreecommitdiffstats
path: root/src/compiler/glsl/tests/warnings/005-lequal.vert
diff options
context:
space:
mode:
authorAlejandro Piñeiro <[email protected]>2016-04-20 10:02:45 +0200
committerAlejandro Piñeiro <[email protected]>2016-05-26 09:19:36 +0200
commit2ed9563e79670ba2430f0827050e9a851fc56e79 (patch)
tree8a5c675d3671301f84d30bc5c74c4ae118a3f68e /src/compiler/glsl/tests/warnings/005-lequal.vert
parenteee00274fa330edfa536da039ba9116bdceb9990 (diff)
glsl: add unit tests data vertex/expected outcome for uninitialized warning
v2: fix 025 test. Add three more tests (Ian Romanick) Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/compiler/glsl/tests/warnings/005-lequal.vert')
-rw-r--r--src/compiler/glsl/tests/warnings/005-lequal.vert17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/compiler/glsl/tests/warnings/005-lequal.vert b/src/compiler/glsl/tests/warnings/005-lequal.vert
new file mode 100644
index 00000000000..73e476a1eb6
--- /dev/null
+++ b/src/compiler/glsl/tests/warnings/005-lequal.vert
@@ -0,0 +1,17 @@
+#version 130
+
+void main()
+{
+ int undefined;
+ int defined = 2;
+ float fooFloat;
+
+ if (undefined <= 0) {
+ fooFloat = 10.0;
+ }
+
+ if (defined <= 0) {
+ fooFloat = 10.0;
+ }
+}
+