| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 ['mac'], bug=599272) | 352 ['mac'], bug=599272) |
| 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 | |
| 363 | |
| 364 # Failed on OSX 10.10 and 10.11 | |
| 365 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', | |
| 366 ['mac', 'intel'], bug=672380) | |
| 367 | |
| 368 # Mac Retina NVidia failures | 362 # Mac Retina NVidia failures |
| 369 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', | 363 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', |
| 370 ['mac', ('nvidia', 0xfe9)], bug=635081) | 364 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 371 self.Fail('conformance/programs/' + | 365 self.Fail('conformance/programs/' + |
| 372 'gl-bind-attrib-location-long-names-test.html', | 366 'gl-bind-attrib-location-long-names-test.html', |
| 373 ['mac', ('nvidia', 0xfe9)], bug=635081) | 367 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 374 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', | 368 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', |
| 375 ['mac', ('nvidia', 0xfe9)], bug=635081) | 369 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 376 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', | 370 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', |
| 377 ['mac', ('nvidia', 0xfe9)], bug=635081) | 371 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 self.Fail('conformance/textures/misc/texture-npot.html', | 838 self.Fail('conformance/textures/misc/texture-npot.html', |
| 845 ['chromeos', ('intel', 0xa011)], bug=375554) | 839 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 846 self.Fail('conformance/textures/misc/texture-npot-video.html', | 840 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 847 ['chromeos', ('intel', 0xa011)], bug=375554) | 841 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 848 self.Fail('conformance/textures/misc/texture-size.html', | 842 self.Fail('conformance/textures/misc/texture-size.html', |
| 849 ['chromeos', ('intel', 0xa011)], bug=375554) | 843 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 850 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 844 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 851 ['chromeos', ('intel', 0xa011)], bug=375554) | 845 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 852 self.Skip('conformance/uniforms/uniform-default-values.html', | 846 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 853 ['chromeos', ('intel', 0xa011)], bug=375554) | 847 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |