1# Basic test set 2[[deqp]] 3deqp = "/deqp/modules/gles2/deqp-gles2" 4caselists = ["/deqp/mustpass/gles2-master.txt"] 5skips = ["/install/iris-skips.txt"] 6deqp_args = [ 7 "--deqp-surface-width=256", "--deqp-surface-height=256", 8 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 9 "--deqp-gl-config-name=rgba8888d24s8ms0", 10] 11version_check = "GL ES 3.2.*git" 12renderer_check = "JSL" 13 14[[deqp]] 15deqp = "/deqp/modules/gles3/deqp-gles3" 16caselists = ["/deqp/mustpass/gles3-master.txt"] 17skips = ["/install/iris-skips.txt"] 18deqp_args = [ 19 "--deqp-surface-width=256", "--deqp-surface-height=256", 20 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 21 "--deqp-gl-config-name=rgba8888d24s8ms0", 22] 23 24[[deqp]] 25deqp = "/deqp/modules/gles31/deqp-gles31" 26caselists = ["/deqp/mustpass/gles31-master.txt"] 27skips = ["/install/iris-skips.txt"] 28deqp_args = [ 29 "--deqp-surface-width=256", "--deqp-surface-height=256", 30 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 31 "--deqp-gl-config-name=rgba8888d24s8ms0", 32] 33 34# Note that KHR-GL3* test sets include all tests from the previous 35# version, so we only need to run one test list (unlike dEQP-GLES, 36# where the test sets are separate). 37[[deqp]] 38deqp = "/deqp/external/openglcts/modules/glcts" 39caselists = [ 40 "/deqp/mustpass/gles2-khr-master.txt", 41 "/deqp/mustpass/gles3-khr-master.txt", 42 "/deqp/mustpass/gles31-khr-master.txt", 43 "/deqp/mustpass/gl46-master.txt", 44 "/deqp/mustpass/gl46-khr-single.txt", 45] 46skips = ["/install/iris-skips.txt"] 47deqp_args = [ 48 "--deqp-surface-width=256", "--deqp-surface-height=256", 49 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 50 "--deqp-gl-config-name=rgba8888d24s8ms0", 51] 52timeout = 90.0 # Some tests take a bit over 60 seconds 53 54# 565-nozs 55[[deqp]] 56deqp = "/deqp/modules/gles3/deqp-gles3" 57caselists = ["/deqp/mustpass/gles3-565-no-depth-no-stencil.txt"] 58skips = ["/install/iris-skips.txt"] 59deqp_args = [ 60 "--deqp-surface-width=256", "--deqp-surface-height=256", 61 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 62 "--deqp-gl-config-name=rgb565d0s0ms0", 63] 64prefix = "565-nozs-" 65 66[[deqp]] 67deqp = "/deqp/modules/gles31/deqp-gles31" 68caselists = ["/deqp/mustpass/gles31-565-no-depth-no-stencil.txt"] 69skips = ["/install/iris-skips.txt"] 70deqp_args = [ 71 "--deqp-surface-width=256", "--deqp-surface-height=256", 72 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 73 "--deqp-gl-config-name=rgb565d0s0ms0", 74] 75prefix = "565-nozs-" 76 77# multisample 78[[deqp]] 79deqp = "/deqp/modules/gles3/deqp-gles3" 80caselists = ["/deqp/mustpass/gles3-multisample.txt"] 81skips = ["/install/iris-skips.txt"] 82deqp_args = [ 83 "--deqp-surface-width=256", "--deqp-surface-height=256", 84 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 85 "--deqp-gl-config-name=rgba8888d24s8ms4", 86] 87prefix = "multisample-" 88 89[[deqp]] 90deqp = "/deqp/modules/gles31/deqp-gles31" 91caselists = ["/deqp/mustpass/gles31-multisample.txt"] 92skips = ["/install/iris-skips.txt"] 93deqp_args = [ 94 "--deqp-surface-width=256", "--deqp-surface-height=256", 95 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 96 "--deqp-gl-config-name=rgba8888d24s8ms4", 97] 98prefix = "multisample-" 99