| 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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID | 634 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
| 635 self.Fail('conformance/uniforms/uniform-default-values.html', | 635 self.Fail('conformance/uniforms/uniform-default-values.html', |
| 636 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID | 636 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
| 637 | 637 |
| 638 # Mac failures | 638 # Mac failures |
| 639 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 639 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 640 ['mac'], bug=421710) | 640 ['mac'], bug=421710) |
| 641 self.Fail('deqp/data/gles2/shaders/scoping.html', | 641 self.Fail('deqp/data/gles2/shaders/scoping.html', |
| 642 ['mac'], bug=478572) | 642 ['mac'], bug=478572) |
| 643 | 643 |
| 644 # Mac AMD failures |
| 645 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 646 ['mac', 'amd'], bug=625365) |
| 647 |
| 644 # Mac Retina AMD failures | 648 # Mac Retina AMD failures |
| 645 self.Flaky('conformance/extensions/oes-texture-float-with-video.html', | 649 self.Flaky('conformance/extensions/oes-texture-float-with-video.html', |
| 646 ['mac', ('amd', 0x6821)], bug=599272) | 650 ['mac', ('amd', 0x6821)], bug=599272) |
| 647 self.Fail('conformance/extensions/webgl-draw-buffers.html', | |
| 648 ['mac', ('amd', 0x6821)], bug=625365) | |
| 649 | 651 |
| 650 # Linux failures | 652 # Linux failures |
| 651 self.Flaky('conformance/textures/video/' + | 653 self.Flaky('conformance/textures/video/' + |
| 652 'tex-2d-rgba-rgba-unsigned_byte.html', | 654 'tex-2d-rgba-rgba-unsigned_byte.html', |
| 653 ['linux'], bug=627525) | 655 ['linux'], bug=627525) |
| 654 self.Flaky('conformance/textures/video/' + | 656 self.Flaky('conformance/textures/video/' + |
| 655 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', | 657 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', |
| 656 ['linux'], bug=627525) | 658 ['linux'], bug=627525) |
| 657 self.Flaky('conformance/textures/video/' + | 659 self.Flaky('conformance/textures/video/' + |
| 658 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', | 660 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 952 self.Fail('conformance/textures/misc/texture-npot.html', | 954 self.Fail('conformance/textures/misc/texture-npot.html', |
| 953 ['chromeos', ('intel', 0xa011)], bug=375554) | 955 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 954 self.Fail('conformance/textures/misc/texture-npot-video.html', | 956 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 955 ['chromeos', ('intel', 0xa011)], bug=375554) | 957 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 956 self.Fail('conformance/textures/misc/texture-size.html', | 958 self.Fail('conformance/textures/misc/texture-size.html', |
| 957 ['chromeos', ('intel', 0xa011)], bug=375554) | 959 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 958 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 960 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 959 ['chromeos', ('intel', 0xa011)], bug=375554) | 961 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 960 self.Skip('conformance/uniforms/uniform-default-values.html', | 962 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 961 ['chromeos', ('intel', 0xa011)], bug=375554) | 963 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |