glx: don't fail test if the X server is inconsistent
[piglit.git] / tests / spec / glsl-1.20 / compiler / structure-and-array-operations / array-of-array-structure-field.frag
blob1dc7127ab0207c16e87030f13168a3d913b610c5
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.20
4  * [end config]
5  *
6  * From page 19 (page 25 of the PDF) of the GLSL 1.20 spec:
7  *
8  *     "Only one-dimensional arrays may be declared."
9  */
10 #version 120
12 attribute vec4 vert;
14 struct S {
15   vec4 [2] x[2];
18 void main()
20   gl_FragData[0] = vec4(0.0);