ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.10 / linker / fs-loop-unrolled-divide-by-zero.shader_test
blob761657c3cacbe9bc3793efe79ecc12a37b549d99
1 # From the GLSL 4.60 spec Section 5.9 (Expressions):
3 #      "Dividing by zero does not cause an exception but does
4 #      result in an unspecified value."
6 # Here we make sure that constant evaluation doesn't crash on
7 # a divide by zero.
9 [require]
10 GLSL >= 1.10
12 [vertex shader passthrough]
14 [fragment shader]
15 void main()
17   int j = 0;
19   // We use a loop specifically to avoid Mesa's GLSL IR
20   // from doing the constant evaluating. In this case
21   // we want to test NIR which exclusively does loop
22   // unrolling on some drivers and will therefore end
23   // up doing the constant evaluation.
24   for (int i = 0; i < 4; i++)
25      j += 42/i;
27   gl_FragColor.x = 255.0f / float(j);
30 [test]
31 link success