| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 | 363 |
| 364 # Mac AMD failures | 364 # Mac AMD failures |
| 365 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', | 365 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', |
| 366 ['mac', 'amd'], bug=483282) | 366 ['mac', 'amd'], bug=483282) |
| 367 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 367 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 368 ['mac', 'amd'], bug=625365) | 368 ['mac', 'amd'], bug=625365) |
| 369 self.Fail('conformance/rendering/clipping-wide-points.html', | 369 self.Fail('conformance/rendering/clipping-wide-points.html', |
| 370 ['mac', 'amd'], bug=642822) | 370 ['mac', 'amd'], bug=642822) |
| 371 | 371 |
| 372 # Mac Intel failures | 372 # Mac Intel failures |
| 373 self.Flaky('conformance/textures/webgl_canvas/tex-' + | |
| 374 '2d-rgb-rgb-unsigned_byte.html', | |
| 375 ['mac', 'intel'], bug=648377) | |
| 376 | 373 |
| 377 # Mac Retina NVidia failures | 374 # Mac Retina NVidia failures |
| 378 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', | 375 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', |
| 379 ['mac', ('nvidia', 0xfe9)], bug=635081) | 376 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 380 self.Fail('conformance/programs/' + | 377 self.Fail('conformance/programs/' + |
| 381 'gl-bind-attrib-location-long-names-test.html', | 378 'gl-bind-attrib-location-long-names-test.html', |
| 382 ['mac', ('nvidia', 0xfe9)], bug=635081) | 379 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 383 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', | 380 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', |
| 384 ['mac', ('nvidia', 0xfe9)], bug=635081) | 381 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 385 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', | 382 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 self.Fail('conformance/textures/misc/texture-npot.html', | 847 self.Fail('conformance/textures/misc/texture-npot.html', |
| 851 ['chromeos', ('intel', 0xa011)], bug=375554) | 848 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 852 self.Fail('conformance/textures/misc/texture-npot-video.html', | 849 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 853 ['chromeos', ('intel', 0xa011)], bug=375554) | 850 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 854 self.Fail('conformance/textures/misc/texture-size.html', | 851 self.Fail('conformance/textures/misc/texture-size.html', |
| 855 ['chromeos', ('intel', 0xa011)], bug=375554) | 852 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 856 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 853 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 857 ['chromeos', ('intel', 0xa011)], bug=375554) | 854 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 858 self.Skip('conformance/uniforms/uniform-default-values.html', | 855 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 859 ['chromeos', ('intel', 0xa011)], bug=375554) | 856 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |