glx: don't fail test if the X server is inconsistent
[piglit.git] / tests / spec / glsl-1.20 / compiler / arithmetic-operators / division-by-zero-02.frag
blobbc00c996f9fe48697a4c585389857ba29d1b3154
1 // [config]
2 // expect_result: pass
3 // glsl_version: 1.20
4 // [end config]
5 //
6 // Division by zero is legal for integer values.
7 //
8 // From section 5.9 of the GLSL 1.20 spec:
9 //     Dividing by zero does not cause an exception but does result in an
10 //     unspecified value.
12 #version 120
14 int
15 f() {
16     int x = 1 / 0;
17     return x;