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_test_expectations import GpuTestExpectations | 6 from 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 # Mac 10.9 / Intel HD 3000 failures | 147 # Mac 10.9 / Intel HD 3000 failures |
148 self.Fail('conformance/ogles/GL/operators/operators_009_to_016.html', | 148 self.Fail('conformance/ogles/GL/operators/operators_009_to_016.html', |
149 ['mavericks', ('intel', 0x116)], bug=417415) | 149 ['mavericks', ('intel', 0x116)], bug=417415) |
150 self.Fail('conformance/rendering/gl-scissor-test.html', | 150 self.Fail('conformance/rendering/gl-scissor-test.html', |
151 ['mavericks', ('intel', 0x116)], bug=417415) | 151 ['mavericks', ('intel', 0x116)], bug=417415) |
152 | 152 |
153 # Mac Retina failures | 153 # Mac Retina failures |
154 self.Fail( | 154 self.Fail( |
155 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', | 155 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', |
156 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) | 156 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) |
157 self.Flaky('conformance/extensions/oes-texture-half-float-with-video.html', | 157 self.Fail('conformance/extensions/oes-texture-half-float-with-video.html', |
158 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=524717) | 158 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=524717) |
159 | 159 |
160 # Mac / AMD Failures | 160 # Mac / AMD Failures |
161 self.Fail('deqp/data/gles2/shaders/conversions.html', | 161 self.Fail('deqp/data/gles2/shaders/conversions.html', |
162 ['mac', 'amd'], bug=478572) | 162 ['mac', 'amd'], bug=478572) |
163 | 163 |
164 # Mac 10.8 / ATI failures | 164 # Mac 10.8 / ATI failures |
165 self.Fail( | 165 self.Fail( |
166 'conformance/rendering/' + | 166 'conformance/rendering/' + |
167 'point-with-gl-pointcoord-in-fragment-shader.html', | 167 'point-with-gl-pointcoord-in-fragment-shader.html', |
168 ['mountainlion', 'amd']) | 168 ['mountainlion', 'amd']) |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 self.Fail('conformance2/rendering/instanced-arrays.html', | 629 self.Fail('conformance2/rendering/instanced-arrays.html', |
630 ['mac'], bug=483282) | 630 ['mac'], bug=483282) |
631 self.Fail('deqp/functional/gles3/vertexarrayobject.html', | 631 self.Fail('deqp/functional/gles3/vertexarrayobject.html', |
632 ['mac'], bug=483282) | 632 ['mac'], bug=483282) |
633 self.Fail('deqp/functional/gles3/shaderswitch.html', | 633 self.Fail('deqp/functional/gles3/shaderswitch.html', |
634 ['mac'], bug=483282) | 634 ['mac'], bug=483282) |
635 | 635 |
636 # Linux only. | 636 # Linux only. |
637 self.Fail('deqp/functional/gles3/shaderswitch.html', | 637 self.Fail('deqp/functional/gles3/shaderswitch.html', |
638 ['linux'], bug=483282) | 638 ['linux'], bug=483282) |
OLD | NEW |