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_test_expectations import GpuTestExpectations | 6 from 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 ['win', 'amd', 'd3d9'], bug=475095) | 73 ['win', 'amd', 'd3d9'], bug=475095) |
74 self.Fail('conformance/rendering/more-than-65536-indices.html', | 74 self.Fail('conformance/rendering/more-than-65536-indices.html', |
75 ['win', 'amd', 'd3d9'], bug=475095) | 75 ['win', 'amd', 'd3d9'], bug=475095) |
76 | 76 |
77 # Win / D3D9 failures | 77 # Win / D3D9 failures |
78 # Skipping these tests because they're causing assertion failures. | 78 # Skipping these tests because they're causing assertion failures. |
79 self.Skip('conformance/extensions/oes-texture-float-with-canvas.html', | 79 self.Skip('conformance/extensions/oes-texture-float-with-canvas.html', |
80 ['win', 'd3d9'], bug=896) # angle bug ID | 80 ['win', 'd3d9'], bug=896) # angle bug ID |
81 self.Skip('conformance/extensions/oes-texture-half-float-with-canvas.html', | 81 self.Skip('conformance/extensions/oes-texture-half-float-with-canvas.html', |
82 ['win', 'd3d9'], bug=896) # angle bug ID | 82 ['win', 'd3d9'], bug=896) # angle bug ID |
| 83 self.Fail('conformance/glsl/bugs/conditional-discard-optimization.html', |
| 84 ['win', 'd3d9'], bug=488552) |
83 | 85 |
84 # Mac failures | 86 # Mac failures |
85 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 87 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
86 ['mac'], bug=421710) | 88 ['mac'], bug=421710) |
87 | 89 |
88 # Mac / Intel failures | 90 # Mac / Intel failures |
89 # Radar 13499466 | 91 # Radar 13499466 |
90 self.Fail('conformance/limits/gl-max-texture-dimensions.html', | 92 self.Fail('conformance/limits/gl-max-texture-dimensions.html', |
91 ['mac', 'intel'], bug=225642) | 93 ['mac', 'intel'], bug=225642) |
92 # Radar 13499623 | 94 # Radar 13499623 |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 self.Fail('conformance2/glsl3/misplaced-version-directive.html', bug=483282) | 408 self.Fail('conformance2/glsl3/misplaced-version-directive.html', bug=483282) |
407 | 409 |
408 self.Fail('conformance2/state/gl-get-calls.html', bug=483282) | 410 self.Fail('conformance2/state/gl-get-calls.html', bug=483282) |
409 self.Fail('conformance2/state/gl-object-get-calls.html', bug=483282) | 411 self.Fail('conformance2/state/gl-object-get-calls.html', bug=483282) |
410 | 412 |
411 self.Fail('conformance2/buffers/buffer-copying-contents.html', bug=483282) | 413 self.Fail('conformance2/buffers/buffer-copying-contents.html', bug=483282) |
412 self.Fail('conformance2/buffers/buffer-copying-restrictions.html', | 414 self.Fail('conformance2/buffers/buffer-copying-restrictions.html', |
413 bug=483282) | 415 bug=483282) |
414 self.Fail('conformance2/buffers/buffer-type-restrictions.html', bug=483282) | 416 self.Fail('conformance2/buffers/buffer-type-restrictions.html', bug=483282) |
415 self.Fail('conformance2/buffers/getBufferSubData.html', bug=483282) | 417 self.Fail('conformance2/buffers/getBufferSubData.html', bug=483282) |
OLD | NEW |