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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 # Two flaky tests. | 214 # Two flaky tests. |
215 self.Fail('conformance/ogles/GL/functions/functions_049_to_056.html', | 215 self.Fail('conformance/ogles/GL/functions/functions_049_to_056.html', |
216 ['lion', 'intel'], bug=393331) | 216 ['lion', 'intel'], bug=393331) |
217 self.Fail('conformance/extensions/webgl-compressed-texture-size-limit.html', | 217 self.Fail('conformance/extensions/webgl-compressed-texture-size-limit.html', |
218 ['lion', 'intel'], bug=393331) | 218 ['lion', 'intel'], bug=393331) |
219 | 219 |
220 # Linux failures | 220 # Linux failures |
221 # NVIDIA | 221 # NVIDIA |
222 self.Fail('conformance/textures/misc/default-texture.html', | 222 self.Fail('conformance/textures/misc/default-texture.html', |
223 ['linux', ('nvidia', 0x104a)], bug=422152) | 223 ['linux', ('nvidia', 0x104a)], bug=422152) |
224 self.Flaky('conformance/extensions/angle-instanced-arrays.html', | 224 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
225 ['linux', 'nvidia'], bug=544989) | 225 ['linux', 'nvidia'], bug=544989) # Too flaky to retry |
226 self.Flaky('conformance/extensions/oes-element-index-uint.html', | 226 self.Flaky('conformance/extensions/oes-element-index-uint.html', |
227 ['linux', 'nvidia'], bug=524144) | 227 ['linux', 'nvidia'], bug=524144) |
228 # AMD Radeon 5450 | 228 # AMD Radeon 5450 |
229 self.Fail('conformance/programs/program-test.html', | 229 self.Fail('conformance/programs/program-test.html', |
230 ['linux', ('amd', 0x68f9)], bug=436212) | 230 ['linux', ('amd', 0x68f9)], bug=436212) |
231 self.Fail('conformance/rendering/multisample-corruption.html', | 231 self.Fail('conformance/rendering/multisample-corruption.html', |
232 ['linux', ('amd', 0x68f9)], bug=436212) | 232 ['linux', ('amd', 0x68f9)], bug=436212) |
233 self.Fail('conformance/textures/misc/default-texture.html', | 233 self.Fail('conformance/textures/misc/default-texture.html', |
234 ['linux', ('amd', 0x68f9)], bug=436212) | 234 ['linux', ('amd', 0x68f9)], bug=436212) |
235 self.Fail('conformance/textures/video/' + | 235 self.Fail('conformance/textures/video/' + |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 self.Fail('conformance/textures/misc/texture-npot.html', | 481 self.Fail('conformance/textures/misc/texture-npot.html', |
482 ['chromeos', ('intel', 0xa011)], bug=375554) | 482 ['chromeos', ('intel', 0xa011)], bug=375554) |
483 self.Fail('conformance/textures/misc/texture-npot-video.html', | 483 self.Fail('conformance/textures/misc/texture-npot-video.html', |
484 ['chromeos', ('intel', 0xa011)], bug=375554) | 484 ['chromeos', ('intel', 0xa011)], bug=375554) |
485 self.Fail('conformance/textures/misc/texture-size.html', | 485 self.Fail('conformance/textures/misc/texture-size.html', |
486 ['chromeos', ('intel', 0xa011)], bug=375554) | 486 ['chromeos', ('intel', 0xa011)], bug=375554) |
487 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 487 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
488 ['chromeos', ('intel', 0xa011)], bug=375554) | 488 ['chromeos', ('intel', 0xa011)], bug=375554) |
489 self.Skip('conformance/uniforms/uniform-default-values.html', | 489 self.Skip('conformance/uniforms/uniform-default-values.html', |
490 ['chromeos', ('intel', 0xa011)], bug=375554) | 490 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |