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 15 matching lines...) Expand all Loading... |
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. | 31 # Windows failures. |
32 self.Fail('conformance/ogles/GL/atan/atan_001_to_008.html', | 32 self.Fail('conformance/ogles/GL/atan/atan_001_to_008.html', |
33 ['win'], bug=322794) | 33 ['win'], bug=322794) |
34 self.Fail('conformance/ogles/GL/atan/atan_009_to_012.html', | 34 self.Fail('conformance/ogles/GL/atan/atan_009_to_012.html', |
35 ['win'], bug=322794) | 35 ['win'], bug=322794) |
36 self.Fail('conformance/ogles/GL/control_flow/control_flow_001_to_008.html', | 36 self.Skip('conformance/ogles/GL/control_flow/control_flow_001_to_008.html', |
37 ['win'], bug=322795) | 37 ['win'], bug=322795) |
38 | 38 |
39 # Windows/Intel failures | 39 # Windows/Intel failures |
40 self.Fail('conformance/textures/texture-size.html', | 40 self.Fail('conformance/textures/texture-size.html', |
41 ['win', 'intel'], bug=121139) | 41 ['win', 'intel'], bug=121139) |
42 self.Fail('conformance/rendering/gl-scissor-test.html', | 42 self.Fail('conformance/rendering/gl-scissor-test.html', |
43 ['win', 'intel'], bug=314997) | 43 ['win', 'intel'], bug=314997) |
44 | 44 |
45 # Windows/AMD failures | 45 # Windows/AMD failures |
46 self.Fail('conformance/rendering/more-than-65536-indices.html', | 46 self.Fail('conformance/rendering/more-than-65536-indices.html', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', | 102 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', |
103 ['win7', 'intel'], bug=322770) | 103 ['win7', 'intel'], bug=322770) |
104 | 104 |
105 # Mac failures. | 105 # Mac failures. |
106 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', | 106 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', |
107 ['mac'], bug=322760) | 107 ['mac'], bug=322760) |
108 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', | 108 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', |
109 ['mac'], bug=322770) | 109 ['mac'], bug=322770) |
110 self.Skip('conformance/textures/texture-size-limit.html', | 110 self.Skip('conformance/textures/texture-size-limit.html', |
111 ['mac'], bug=322789) | 111 ['mac'], bug=322789) |
| 112 self.Skip('conformance/ogles/GL/control_flow/control_flow_001_to_008.html', |
| 113 ['mac'], bug=322795) |
112 | 114 |
113 # Mac/Intel failures | 115 # Mac/Intel failures |
114 self.Fail('conformance/rendering/gl-scissor-test.html', | 116 self.Fail('conformance/rendering/gl-scissor-test.html', |
115 ['mac', 'intel'], bug=314997) | 117 ['mac', 'intel'], bug=314997) |
116 # The following two tests hang the WindowServer. | 118 # The following two tests hang the WindowServer. |
117 self.Skip('conformance/canvas/drawingbuffer-static-canvas-test.html', | 119 self.Skip('conformance/canvas/drawingbuffer-static-canvas-test.html', |
118 ['mac', 'intel'], bug=303915) | 120 ['mac', 'intel'], bug=303915) |
119 self.Skip('conformance/canvas/drawingbuffer-test.html', | 121 self.Skip('conformance/canvas/drawingbuffer-test.html', |
120 ['mac', 'intel'], bug=303915) | 122 ['mac', 'intel'], bug=303915) |
121 # The following three tests only fail. | 123 # The following three tests only fail. |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 self.Fail('conformance/glsl/misc/empty_main.vert.html', | 186 self.Fail('conformance/glsl/misc/empty_main.vert.html', |
185 ['android'], bug=315976) | 187 ['android'], bug=315976) |
186 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', | 188 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', |
187 ['android'], bug=315976) | 189 ['android'], bug=315976) |
188 | 190 |
189 # Skip slow tests. | 191 # Skip slow tests. |
190 self.Skip('conformance/context/context-creation-and-destruction.html', | 192 self.Skip('conformance/context/context-creation-and-destruction.html', |
191 bug=322689) | 193 bug=322689) |
192 self.Skip('conformance/rendering/multisample-corruption.html', | 194 self.Skip('conformance/rendering/multisample-corruption.html', |
193 bug=322689) | 195 bug=322689) |
OLD | NEW |