| 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 | 4 |
| 5 from gpu_test_expectations import GpuTestExpectations | 5 from gpu_test_expectations import GpuTestExpectations |
| 6 | 6 |
| 7 # See the GpuTestExpectations class for documentation. | 7 # See the GpuTestExpectations class for documentation. |
| 8 | 8 |
| 9 class WebGLConformanceExpectations(GpuTestExpectations): | 9 class WebGLConformanceExpectations(GpuTestExpectations): |
| 10 def SetExpectations(self): | 10 def SetExpectations(self): |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 self.Fail('conformance/context/premultiplyalpha-test.html', | 54 self.Fail('conformance/context/premultiplyalpha-test.html', |
| 55 ['win7', 'intel']) | 55 ['win7', 'intel']) |
| 56 self.Fail('conformance/textures/copy-tex-image-and-sub-image-2d.html', | 56 self.Fail('conformance/textures/copy-tex-image-and-sub-image-2d.html', |
| 57 ['win7', 'intel']) | 57 ['win7', 'intel']) |
| 58 self.Fail('conformance/rendering/gl-viewport-test.html', | 58 self.Fail('conformance/rendering/gl-viewport-test.html', |
| 59 ['win7', 'intel'], bug=372511) | 59 ['win7', 'intel'], bug=372511) |
| 60 self.Fail('conformance/glsl/misc/shader-with-array-of-structs-uniform.html', | 60 self.Fail('conformance/glsl/misc/shader-with-array-of-structs-uniform.html', |
| 61 ['win7', 'intel', 'nvidia'], bug=373972) | 61 ['win7', 'intel', 'nvidia'], bug=373972) |
| 62 | 62 |
| 63 # Win / AMD failures | 63 # Win / AMD failures |
| 64 self.Fail('conformance/extensions/ext-sRGB.html', | |
| 65 ['win', 'amd'], bug=839) # angle bug ID | |
| 66 self.Fail('conformance/extensions/webgl-depth-texture.html', | |
| 67 ['win', 'amd'], bug=839) # angle bug ID | |
| 68 self.Fail('conformance/textures/texparameter-test.html', | 64 self.Fail('conformance/textures/texparameter-test.html', |
| 69 ['win', 'amd', 'd3d9'], bug=839) # angle bug ID | 65 ['win', 'amd', 'd3d9'], bug=839) # angle bug ID |
| 70 | 66 |
| 71 # Mac / Intel failures | 67 # Mac / Intel failures |
| 72 # Radar 13499466 | 68 # Radar 13499466 |
| 73 self.Fail('conformance/limits/gl-max-texture-dimensions.html', | 69 self.Fail('conformance/limits/gl-max-texture-dimensions.html', |
| 74 ['mac', 'intel'], bug=225642) | 70 ['mac', 'intel'], bug=225642) |
| 75 # Radar 13499623 | 71 # Radar 13499623 |
| 76 self.Fail('conformance/textures/texture-size.html', | 72 self.Fail('conformance/textures/texture-size.html', |
| 77 ['mac', 'intel'], bug=225642) | 73 ['mac', 'intel'], bug=225642) |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 299 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 304 ['chromeos', ('intel', 0xa011)], bug=375554) | 300 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 305 self.Skip('conformance/uniforms/uniform-default-values.html', | 301 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 306 ['chromeos', ('intel', 0xa011)], bug=375554) | 302 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 307 | 303 |
| 308 # Flaky on Mac & Linux | 304 # Flaky on Mac & Linux |
| 309 self.Fail('conformance/textures/texture-upload-size.html', | 305 self.Fail('conformance/textures/texture-upload-size.html', |
| 310 ['mac'], bug=436493) | 306 ['mac'], bug=436493) |
| 311 self.Fail('conformance/textures/texture-upload-size.html', | 307 self.Fail('conformance/textures/texture-upload-size.html', |
| 312 ['linux'], bug=436493) | 308 ['linux'], bug=436493) |
| OLD | NEW |