| 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 | 353 |
| 354 # Mac AMD failures | 354 # Mac AMD failures |
| 355 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', | 355 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', |
| 356 ['mac', 'amd'], bug=483282) | 356 ['mac', 'amd'], bug=483282) |
| 357 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 357 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 358 ['mac', 'amd'], bug=625365) | 358 ['mac', 'amd'], bug=625365) |
| 359 self.Fail('conformance/rendering/clipping-wide-points.html', | 359 self.Fail('conformance/rendering/clipping-wide-points.html', |
| 360 ['mac', 'amd'], bug=642822) | 360 ['mac', 'amd'], bug=642822) |
| 361 | 361 |
| 362 # Mac Intel failures | 362 # Mac Intel failures |
| 363 self.Flaky('conformance/textures/webgl_canvas/tex-' + | |
| 364 '2d-rgb-rgb-unsigned_byte.html', | |
| 365 ['mac', 'intel'], bug=648377) | |
| 366 | 363 |
| 367 # Failed on OSX 10.10 and 10.11 | 364 # Failed on OSX 10.10 and 10.11 |
| 368 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', | 365 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', |
| 369 ['mac', 'intel'], bug=672380) | 366 ['mac', 'intel'], bug=672380) |
| 370 | 367 |
| 371 # Mac Retina NVidia failures | 368 # Mac Retina NVidia failures |
| 372 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', | 369 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', |
| 373 ['mac', ('nvidia', 0xfe9)], bug=635081) | 370 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 374 self.Fail('conformance/programs/' + | 371 self.Fail('conformance/programs/' + |
| 375 'gl-bind-attrib-location-long-names-test.html', | 372 'gl-bind-attrib-location-long-names-test.html', |
| (...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 self.Fail('conformance/textures/misc/texture-npot.html', | 844 self.Fail('conformance/textures/misc/texture-npot.html', |
| 848 ['chromeos', ('intel', 0xa011)], bug=375554) | 845 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 849 self.Fail('conformance/textures/misc/texture-npot-video.html', | 846 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 850 ['chromeos', ('intel', 0xa011)], bug=375554) | 847 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 851 self.Fail('conformance/textures/misc/texture-size.html', | 848 self.Fail('conformance/textures/misc/texture-size.html', |
| 852 ['chromeos', ('intel', 0xa011)], bug=375554) | 849 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 853 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 850 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 854 ['chromeos', ('intel', 0xa011)], bug=375554) | 851 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 855 self.Skip('conformance/uniforms/uniform-default-values.html', | 852 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 856 ['chromeos', ('intel', 0xa011)], bug=375554) | 853 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |