| 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 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 646 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
| 647 ['linux', 'nvidia'], bug=544989) # Too flaky to retry | 647 ['linux', 'nvidia'], bug=544989) # Too flaky to retry |
| 648 self.Flaky('conformance/extensions/oes-element-index-uint.html', | 648 self.Flaky('conformance/extensions/oes-element-index-uint.html', |
| 649 ['linux', 'nvidia'], bug=524144) | 649 ['linux', 'nvidia'], bug=524144) |
| 650 self.Flaky('conformance/textures/image/' + | 650 self.Flaky('conformance/textures/image/' + |
| 651 'tex-2d-rgb-rgb-unsigned_byte.html', | 651 'tex-2d-rgb-rgb-unsigned_byte.html', |
| 652 ['linux', 'nvidia'], bug=596622) | 652 ['linux', 'nvidia'], bug=596622) |
| 653 # AMD | 653 # AMD |
| 654 self.Flaky('conformance/more/functions/uniformi.html', | 654 self.Flaky('conformance/more/functions/uniformi.html', |
| 655 ['linux', 'amd'], bug=550989) | 655 ['linux', 'amd'], bug=550989) |
| 656 self.Fail('conformance/textures/misc/tex-image-webgl.html', | |
| 657 ['linux', 'amd'], bug=626742) | |
| 658 | 656 |
| 659 # AMD Radeon 6450 | 657 # AMD Radeon 6450 |
| 660 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 658 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
| 661 ['linux', ('amd', 0x6779)], bug=479260) | 659 ['linux', ('amd', 0x6779)], bug=479260) |
| 662 self.Flaky('conformance/extensions/ext-texture-filter-anisotropic.html', | 660 self.Flaky('conformance/extensions/ext-texture-filter-anisotropic.html', |
| 663 ['linux', ('amd', 0x6779)], bug=436212) | 661 ['linux', ('amd', 0x6779)], bug=436212) |
| 664 self.Flaky('conformance/glsl/misc/shader-struct-scope.html', | 662 self.Flaky('conformance/glsl/misc/shader-struct-scope.html', |
| 665 ['linux', ('amd', 0x6779)], bug=436212) | 663 ['linux', ('amd', 0x6779)], bug=436212) |
| 666 self.Flaky('conformance/glsl/misc/struct-nesting-of-variable-names.html', | 664 self.Flaky('conformance/glsl/misc/struct-nesting-of-variable-names.html', |
| 667 ['linux', ('amd', 0x6779)], bug=436212) | 665 ['linux', ('amd', 0x6779)], bug=436212) |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 self.Fail('conformance/textures/misc/texture-npot.html', | 923 self.Fail('conformance/textures/misc/texture-npot.html', |
| 926 ['chromeos', ('intel', 0xa011)], bug=375554) | 924 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 927 self.Fail('conformance/textures/misc/texture-npot-video.html', | 925 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 928 ['chromeos', ('intel', 0xa011)], bug=375554) | 926 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 929 self.Fail('conformance/textures/misc/texture-size.html', | 927 self.Fail('conformance/textures/misc/texture-size.html', |
| 930 ['chromeos', ('intel', 0xa011)], bug=375554) | 928 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 931 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 929 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 932 ['chromeos', ('intel', 0xa011)], bug=375554) | 930 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 933 self.Skip('conformance/uniforms/uniform-default-values.html', | 931 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 934 ['chromeos', ('intel', 0xa011)], bug=375554) | 932 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |