| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 self.Fail('conformance/textures/texture-complete.html', | 80 self.Fail('conformance/textures/texture-complete.html', |
| 81 ['win7', 'intel']) | 81 ['win7', 'intel']) |
| 82 self.Fail('conformance/textures/texture-formats-test.html', | 82 self.Fail('conformance/textures/texture-formats-test.html', |
| 83 ['win7', 'intel']) | 83 ['win7', 'intel']) |
| 84 self.Fail('conformance/textures/texture-mips.html', | 84 self.Fail('conformance/textures/texture-mips.html', |
| 85 ['win7', 'intel']) | 85 ['win7', 'intel']) |
| 86 self.Fail('conformance/textures/texture-npot.html', | 86 self.Fail('conformance/textures/texture-npot.html', |
| 87 ['win7', 'intel']) | 87 ['win7', 'intel']) |
| 88 self.Fail('conformance/textures/texture-size-cube-maps.html', | 88 self.Fail('conformance/textures/texture-size-cube-maps.html', |
| 89 ['win7', 'intel']) | 89 ['win7', 'intel']) |
| 90 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', |
| 91 ['win7', 'intel'], bug=322770) |
| 90 | 92 |
| 91 # Mac failures. | 93 # Mac failures. |
| 92 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', | 94 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', |
| 93 ['mac'], bug=322760) | 95 ['mac'], bug=322760) |
| 96 self.Fail('conformance/context/context-attribute-preserve-drawing-buffer.htm
l', |
| 97 ['mac'], bug=322770) |
| 94 | 98 |
| 95 # Mac/Intel failures | 99 # Mac/Intel failures |
| 96 self.Fail('conformance/rendering/gl-scissor-test.html', | 100 self.Fail('conformance/rendering/gl-scissor-test.html', |
| 97 ['mac', 'intel'], bug=314997) | 101 ['mac', 'intel'], bug=314997) |
| 98 # The following two tests hang the WindowServer. | 102 # The following two tests hang the WindowServer. |
| 99 self.Skip('conformance/canvas/drawingbuffer-static-canvas-test.html', | 103 self.Skip('conformance/canvas/drawingbuffer-static-canvas-test.html', |
| 100 ['mac', 'intel'], bug=303915) | 104 ['mac', 'intel'], bug=303915) |
| 101 self.Skip('conformance/canvas/drawingbuffer-test.html', | 105 self.Skip('conformance/canvas/drawingbuffer-test.html', |
| 102 ['mac', 'intel'], bug=303915) | 106 ['mac', 'intel'], bug=303915) |
| 103 # The following three tests only fail. | 107 # The following three tests only fail. |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 self.Fail('conformance/glsl/misc/empty_main.vert.html', | 166 self.Fail('conformance/glsl/misc/empty_main.vert.html', |
| 163 ['android'], bug=315976) | 167 ['android'], bug=315976) |
| 164 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', | 168 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', |
| 165 ['android'], bug=315976) | 169 ['android'], bug=315976) |
| 166 | 170 |
| 167 # Skip slow tests. | 171 # Skip slow tests. |
| 168 self.Skip('conformance/context/context-creation-and-destruction.html', | 172 self.Skip('conformance/context/context-creation-and-destruction.html', |
| 169 bug=322689) | 173 bug=322689) |
| 170 self.Skip('conformance/rendering/multisample-corruption.html', | 174 self.Skip('conformance/rendering/multisample-corruption.html', |
| 171 bug=322689) | 175 bug=322689) |
| OLD | NEW |