| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 import os | 4 import os |
| 5 | 5 |
| 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations |
| 7 | 7 |
| 8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
| 9 | 9 |
| 10 class WebGLConformanceExpectations(GpuTestExpectations): | 10 class WebGLConformanceExpectations(GpuTestExpectations): |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 ['android']) | 73 ['android']) |
| 74 self.Fail('WebglExtension.WEBGL_compressed_texture_s3tc', | 74 self.Fail('WebglExtension.WEBGL_compressed_texture_s3tc', |
| 75 ['android']) | 75 ['android']) |
| 76 self.Fail('WebglExtension.WEBGL_depth_texture', | 76 self.Fail('WebglExtension.WEBGL_depth_texture', |
| 77 ['android']) | 77 ['android']) |
| 78 self.Fail('WebglExtension.WEBGL_draw_buffers', | 78 self.Fail('WebglExtension.WEBGL_draw_buffers', |
| 79 ['android']) | 79 ['android']) |
| 80 | 80 |
| 81 # Nexus 5 | 81 # Nexus 5 |
| 82 self.Fail('WebglExtension.OES_texture_float_linear', | 82 self.Fail('WebglExtension.OES_texture_float_linear', |
| 83 ['android', ('qualcomm', 'Adreno (TM) 330')]) | 83 ['android', ('qualcomm', 'Adreno (TM) 330')]) |
| 84 | 84 |
| 85 # Nexus 5X | 85 # Nexus 5X |
| 86 self.Fail('conformance/extensions/oes-texture-float-with-image-data.html', | 86 self.Fail('conformance/extensions/oes-texture-float-with-image-data.html', |
| 87 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) | 87 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) |
| 88 self.Fail('conformance/extensions/oes-texture-float-with-image.html', | 88 self.Fail('conformance/extensions/oes-texture-float-with-image.html', |
| 89 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) | 89 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) |
| 90 self.Fail('conformance/extensions/oes-texture-half-float-with-canvas.html', | 90 self.Fail('conformance/extensions/oes-texture-half-float-with-canvas.html', |
| 91 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) | 91 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) |
| 92 self.Fail( | 92 self.Fail('conformance/extensions/' + |
| 93 'conformance/extensions/oes-texture-half-float-with-image-data.html', | 93 'oes-texture-half-float-with-image-data.html', |
| 94 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) | 94 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) |
| 95 self.Fail('conformance/extensions/oes-texture-half-float-with-image.html', | 95 self.Fail('conformance/extensions/oes-texture-half-float-with-image.html', |
| 96 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) | 96 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) |
| 97 self.Fail('conformance/extensions/oes-texture-half-float-with-video.html', | 97 self.Fail('conformance/extensions/oes-texture-half-float-with-video.html', |
| 98 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) | 98 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) |
| 99 self.Fail('conformance/extensions/webgl-compressed-texture-atc.html', | 99 self.Fail('conformance/extensions/webgl-compressed-texture-atc.html', |
| 100 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) | 100 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) |
| 101 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', | 101 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', |
| 102 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) | 102 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) |
| 103 # This test is skipped because it is crashing the GPU process. | 103 # This test is skipped because it is crashing the GPU process. |
| 104 self.Skip('conformance/glsl/misc/shader-with-non-reserved-words.html', | 104 self.Skip('conformance/glsl/misc/shader-with-non-reserved-words.html', |
| 105 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) | 105 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) |
| 106 self.Fail('WebglExtension.EXT_sRGB', |
| 107 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) |
| 108 self.Fail('conformance/textures/misc/' + |
| 109 'tex-image-and-sub-image-2d-with-array-buffer-view.html', |
| 110 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) |
| 111 self.Fail('conformance/textures/canvas/*', |
| 112 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) |
| 113 self.Fail('conformance/textures/image/' + |
| 114 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', |
| 115 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) |
| 116 self.Fail('conformance/textures/image/tex-2d-rgba-rgba-unsigned_byte.html', |
| 117 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) |
| 118 self.Fail('conformance/textures/image/' + |
| 119 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', |
| 120 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) |
| 121 self.Fail('conformance/textures/image/' + |
| 122 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', |
| 123 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) |
| 106 | 124 |
| 107 # Nexus 6 | 125 # Nexus 6 |
| 108 self.Fail('WebglExtension.EXT_sRGB', | 126 self.Fail('WebglExtension.EXT_sRGB', |
| 109 ['android', ('qualcomm', 'Adreno (TM) 420')]) | 127 ['android', ('qualcomm', 'Adreno (TM) 420')]) |
| 110 | 128 |
| 111 # Nexus 9 | 129 # Nexus 9 |
| 112 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', | 130 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', |
| 113 ['android', ('nvidia', 'NVIDIA Tegra')]) | 131 ['android', ('nvidia', 'NVIDIA Tegra')]) |
| 114 | 132 |
| 115 # ======================== | 133 # ======================== |
| 116 # Conformance expectations | 134 # Conformance expectations |
| 117 # ======================== | 135 # ======================== |
| 118 # Fails on all platforms | 136 # Fails on all platforms |
| 119 self.Fail('deqp/data/gles2/shaders/functions.html', | 137 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 120 bug=478572) | 138 bug=478572) |
| 121 # Under the Nexus 5X group is a list of failures for bug 609883. | 139 # Under the Nexus 5X group is a list of failures for bug 609883. |
| 122 # the ext-sRGB.html bug is failing on the Nexus 5X. | 140 # the ext-sRGB.html bug is failing on the Nexus 5X. |
| 123 # If bug 540900 is fixed, double check whether the Nexus 5X | 141 # If bug 540900 is fixed, double check whether the Nexus 5X |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 self.Fail('conformance/textures/misc/texture-npot.html', | 525 self.Fail('conformance/textures/misc/texture-npot.html', |
| 508 ['chromeos', ('intel', 0xa011)], bug=375554) | 526 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 509 self.Fail('conformance/textures/misc/texture-npot-video.html', | 527 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 510 ['chromeos', ('intel', 0xa011)], bug=375554) | 528 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 511 self.Fail('conformance/textures/misc/texture-size.html', | 529 self.Fail('conformance/textures/misc/texture-size.html', |
| 512 ['chromeos', ('intel', 0xa011)], bug=375554) | 530 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 513 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 531 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 514 ['chromeos', ('intel', 0xa011)], bug=375554) | 532 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 515 self.Skip('conformance/uniforms/uniform-default-values.html', | 533 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 516 ['chromeos', ('intel', 0xa011)], bug=375554) | 534 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |