glx: don't fail test if the X server is inconsistent
[piglit.git] / tests / spec / glsl-1.20 / compiler / structure-and-array-operations / array-ctor-mismatched-size.vert
blobe6820891c807135fc08b55fd1ef7f877340f6023
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.20
4  * [end config]
5  *
6  * From page 33 (page 39 of the PDF) of the GLSL 1.20 spec:
7  *
8  *     "There must be exactly the same number of arguments as the size of the
9  *     array being constructed."
10  */
11 #version 120
13 vec4 a[] = vec4[2](vec4(0.0), vec4(1.0), vec4(2.0));
15 void main() { gl_Position = a[0]; }