| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', | 104 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', |
| 105 ['win7', 'intel'], bug=322770) | 105 ['win7', 'intel'], bug=322770) |
| 106 | 106 |
| 107 # Mac failures. | 107 # Mac failures. |
| 108 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', | 108 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', |
| 109 ['mac'], bug=322760) | 109 ['mac'], bug=322760) |
| 110 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', | 110 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', |
| 111 ['mac'], bug=322770) | 111 ['mac'], bug=322770) |
| 112 self.Skip('conformance/ogles/GL/control_flow/control_flow_001_to_008.html', | 112 self.Skip('conformance/ogles/GL/control_flow/control_flow_001_to_008.html', |
| 113 ['mac'], bug=322795) | 113 ['mac'], bug=322795) |
| 114 self.Skip('conformance/ogles/GL/control_flow/control_flow_009_to_010.html', |
| 115 ['mac'], bug=322795) |
| 114 | 116 |
| 115 # Mac/Intel failures | 117 # Mac/Intel failures |
| 116 self.Fail('conformance/rendering/gl-scissor-test.html', | 118 self.Fail('conformance/rendering/gl-scissor-test.html', |
| 117 ['mac', 'intel'], bug=314997) | 119 ['mac', 'intel'], bug=314997) |
| 118 # The following two tests hang the WindowServer. | 120 # The following two tests hang the WindowServer. |
| 119 self.Skip('conformance/canvas/drawingbuffer-static-canvas-test.html', | 121 self.Skip('conformance/canvas/drawingbuffer-static-canvas-test.html', |
| 120 ['mac', 'intel'], bug=303915) | 122 ['mac', 'intel'], bug=303915) |
| 121 self.Skip('conformance/canvas/drawingbuffer-test.html', | 123 self.Skip('conformance/canvas/drawingbuffer-test.html', |
| 122 ['mac', 'intel'], bug=303915) | 124 ['mac', 'intel'], bug=303915) |
| 123 # The following three tests only fail. | 125 # The following three tests only fail. |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 self.Fail('conformance/glsl/misc/empty_main.vert.html', | 184 self.Fail('conformance/glsl/misc/empty_main.vert.html', |
| 183 ['android'], bug=315976) | 185 ['android'], bug=315976) |
| 184 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', | 186 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', |
| 185 ['android'], bug=315976) | 187 ['android'], bug=315976) |
| 186 | 188 |
| 187 # Skip slow tests. | 189 # Skip slow tests. |
| 188 self.Skip('conformance/context/context-creation-and-destruction.html', | 190 self.Skip('conformance/context/context-creation-and-destruction.html', |
| 189 bug=322689) | 191 bug=322689) |
| 190 self.Skip('conformance/rendering/multisample-corruption.html', | 192 self.Skip('conformance/rendering/multisample-corruption.html', |
| 191 bug=322689) | 193 bug=322689) |
| OLD | NEW |