| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 ['mac'], bug=599272) | 200 ['mac'], bug=599272) |
| 201 | 201 |
| 202 # Mac AMD failures | 202 # Mac AMD failures |
| 203 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', | 203 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', |
| 204 ['mac', 'amd'], bug=483282) | 204 ['mac', 'amd'], bug=483282) |
| 205 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 205 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 206 ['mac', 'amd'], bug=625365) | 206 ['mac', 'amd'], bug=625365) |
| 207 self.Fail('conformance/rendering/clipping-wide-points.html', | 207 self.Fail('conformance/rendering/clipping-wide-points.html', |
| 208 ['mac', 'amd'], bug=642822) | 208 ['mac', 'amd'], bug=642822) |
| 209 | 209 |
| 210 # Mac Intel failures |
| 211 self.Flaky('conformance/textures/webgl_canvas/tex-' + |
| 212 '2d-rgb-rgb-unsigned_byte.html', |
| 213 ['mac', 'intel'], bug=648377) |
| 214 |
| 210 # Mac Retina NVidia failures | 215 # Mac Retina NVidia failures |
| 211 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', | 216 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', |
| 212 ['mac', ('nvidia', 0xfe9)], bug=635081) | 217 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 213 self.Fail('conformance/programs/' + | 218 self.Fail('conformance/programs/' + |
| 214 'gl-bind-attrib-location-long-names-test.html', | 219 'gl-bind-attrib-location-long-names-test.html', |
| 215 ['mac', ('nvidia', 0xfe9)], bug=635081) | 220 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 216 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', | 221 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', |
| 217 ['mac', ('nvidia', 0xfe9)], bug=635081) | 222 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 218 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', | 223 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', |
| 219 ['mac', ('nvidia', 0xfe9)], bug=635081) | 224 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 self.Fail('conformance/textures/misc/texture-npot.html', | 714 self.Fail('conformance/textures/misc/texture-npot.html', |
| 710 ['chromeos', ('intel', 0xa011)], bug=375554) | 715 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 711 self.Fail('conformance/textures/misc/texture-npot-video.html', | 716 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 712 ['chromeos', ('intel', 0xa011)], bug=375554) | 717 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 713 self.Fail('conformance/textures/misc/texture-size.html', | 718 self.Fail('conformance/textures/misc/texture-size.html', |
| 714 ['chromeos', ('intel', 0xa011)], bug=375554) | 719 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 715 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 720 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 716 ['chromeos', ('intel', 0xa011)], bug=375554) | 721 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 717 self.Skip('conformance/uniforms/uniform-default-values.html', | 722 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 718 ['chromeos', ('intel', 0xa011)], bug=375554) | 723 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |