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 telemetry.page import test_expectations | 5 from telemetry.page import test_expectations |
6 | 6 |
7 # Valid expectation conditions are: | 7 # Valid expectation conditions are: |
8 # | 8 # |
9 # Operating systems: | 9 # Operating systems: |
10 # win, xp, vista, win7, mac, leopard, snowleopard, lion, mountainlion, | 10 # win, xp, vista, win7, mac, leopard, snowleopard, lion, mountainlion, |
(...skipping 10 matching lines...) Expand all Loading... |
21 class WebGLConformanceExpectations(test_expectations.TestExpectations): | 21 class WebGLConformanceExpectations(test_expectations.TestExpectations): |
22 def SetExpectations(self): | 22 def SetExpectations(self): |
23 # Sample Usage: | 23 # Sample Usage: |
24 # self.Fail('gl-enable-vertex-attrib.html', | 24 # self.Fail('gl-enable-vertex-attrib.html', |
25 # ['mac', 'amd', ('nvidia', 0x1234)], bug=123) | 25 # ['mac', 'amd', ('nvidia', 0x1234)], bug=123) |
26 | 26 |
27 # Fails everywhere. | 27 # Fails everywhere. |
28 self.Skip('conformance/glsl/misc/large-loop-compile.html', | 28 self.Skip('conformance/glsl/misc/large-loop-compile.html', |
29 bug=322764) | 29 bug=322764) |
30 | 30 |
| 31 # Windows failures. |
| 32 self.Fail('conformance/ogles/GL/atan/atan_001_to_008.html', |
| 33 ['win'], bug=322794) |
| 34 self.Fail('conformance/ogles/GL/atan/atan_009_to_012.html', |
| 35 ['win'], bug=322794) |
| 36 self.Fail('conformance/ogles/GL/control_flow/control_flow_001_to_008.html', |
| 37 ['win'], bug=322795) |
| 38 |
31 # Windows/Intel failures | 39 # Windows/Intel failures |
32 self.Fail('conformance/textures/texture-size.html', | 40 self.Fail('conformance/textures/texture-size.html', |
33 ['win', 'intel'], bug=121139) | 41 ['win', 'intel'], bug=121139) |
34 self.Fail('conformance/rendering/gl-scissor-test.html', | 42 self.Fail('conformance/rendering/gl-scissor-test.html', |
35 ['win', 'intel'], bug=314997) | 43 ['win', 'intel'], bug=314997) |
36 | 44 |
37 # Windows/AMD failures | 45 # Windows/AMD failures |
38 self.Fail('conformance/rendering/more-than-65536-indices.html', | 46 self.Fail('conformance/rendering/more-than-65536-indices.html', |
39 ['win', 'amd'], bug=314997) | 47 ['win', 'amd'], bug=314997) |
40 | 48 |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 self.Fail('conformance/glsl/misc/empty_main.vert.html', | 184 self.Fail('conformance/glsl/misc/empty_main.vert.html', |
177 ['android'], bug=315976) | 185 ['android'], bug=315976) |
178 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', | 186 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', |
179 ['android'], bug=315976) | 187 ['android'], bug=315976) |
180 | 188 |
181 # Skip slow tests. | 189 # Skip slow tests. |
182 self.Skip('conformance/context/context-creation-and-destruction.html', | 190 self.Skip('conformance/context/context-creation-and-destruction.html', |
183 bug=322689) | 191 bug=322689) |
184 self.Skip('conformance/rendering/multisample-corruption.html', | 192 self.Skip('conformance/rendering/multisample-corruption.html', |
185 bug=322689) | 193 bug=322689) |
OLD | NEW |