| 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 # Skipping these two tests because they're causing assertion failures. | 419 # Skipping these two tests because they're causing assertion failures. |
| 420 self.Skip('conformance/extensions/oes-texture-float-with-canvas.html', | 420 self.Skip('conformance/extensions/oes-texture-float-with-canvas.html', |
| 421 ['win', 'd3d9'], bug=896) # angle bug ID | 421 ['win', 'd3d9'], bug=896) # angle bug ID |
| 422 self.Skip('conformance/extensions/oes-texture-half-float-with-canvas.html', | 422 self.Skip('conformance/extensions/oes-texture-half-float-with-canvas.html', |
| 423 ['win', 'd3d9'], bug=896) # angle bug ID | 423 ['win', 'd3d9'], bug=896) # angle bug ID |
| 424 self.Fail('conformance/glsl/bugs/floor-div-cos-should-not-truncate.html', | 424 self.Fail('conformance/glsl/bugs/floor-div-cos-should-not-truncate.html', |
| 425 ['win', 'd3d9'], bug=1179) # angle bug ID | 425 ['win', 'd3d9'], bug=1179) # angle bug ID |
| 426 # The functions test have been persistently flaky on D3D9 | 426 # The functions test have been persistently flaky on D3D9 |
| 427 self.Flaky('conformance/glsl/functions/*', | 427 self.Flaky('conformance/glsl/functions/*', |
| 428 ['win', 'd3d9'], bug=415609) | 428 ['win', 'd3d9'], bug=415609) |
| 429 self.Flaky('conformance/glsl/matrices/glsl-mat4-to-mat3.html', |
| 430 ['win', 'd3d9'], bug=617148) |
| 429 | 431 |
| 430 # WIN / D3D9 / Intel failures | 432 # WIN / D3D9 / Intel failures |
| 431 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', | 433 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', |
| 432 ['win', 'intel', 'd3d9'], bug=540538) | 434 ['win', 'intel', 'd3d9'], bug=540538) |
| 433 | 435 |
| 434 # WIN / OpenGL / NVIDIA failures | 436 # WIN / OpenGL / NVIDIA failures |
| 435 # Mark ANGLE's OpenGL as flaky on Windows Nvidia | 437 # Mark ANGLE's OpenGL as flaky on Windows Nvidia |
| 436 self.Flaky('conformance/*', ['win', 'nvidia', 'opengl'], bug=582083) | 438 self.Flaky('conformance/*', ['win', 'nvidia', 'opengl'], bug=582083) |
| 437 | 439 |
| 438 # Win / OpenGL / AMD failures | 440 # Win / OpenGL / AMD failures |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 self.Fail('conformance/textures/misc/texture-npot.html', | 758 self.Fail('conformance/textures/misc/texture-npot.html', |
| 757 ['chromeos', ('intel', 0xa011)], bug=375554) | 759 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 758 self.Fail('conformance/textures/misc/texture-npot-video.html', | 760 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 759 ['chromeos', ('intel', 0xa011)], bug=375554) | 761 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 760 self.Fail('conformance/textures/misc/texture-size.html', | 762 self.Fail('conformance/textures/misc/texture-size.html', |
| 761 ['chromeos', ('intel', 0xa011)], bug=375554) | 763 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 762 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 764 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 763 ['chromeos', ('intel', 0xa011)], bug=375554) | 765 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 764 self.Skip('conformance/uniforms/uniform-default-values.html', | 766 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 765 ['chromeos', ('intel', 0xa011)], bug=375554) | 767 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |