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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 90 |
| 91 # Mac failures. |
| 92 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', |
| 93 ['mac'], bug=322760) |
| 94 |
91 # Mac/Intel failures | 95 # Mac/Intel failures |
92 self.Fail('conformance/rendering/gl-scissor-test.html', | 96 self.Fail('conformance/rendering/gl-scissor-test.html', |
93 ['mac', 'intel'], bug=314997) | 97 ['mac', 'intel'], bug=314997) |
94 # The following two tests hang the WindowServer. | 98 # The following two tests hang the WindowServer. |
95 self.Skip('conformance/canvas/drawingbuffer-static-canvas-test.html', | 99 self.Skip('conformance/canvas/drawingbuffer-static-canvas-test.html', |
96 ['mac', 'intel'], bug=303915) | 100 ['mac', 'intel'], bug=303915) |
97 self.Skip('conformance/canvas/drawingbuffer-test.html', | 101 self.Skip('conformance/canvas/drawingbuffer-test.html', |
98 ['mac', 'intel'], bug=303915) | 102 ['mac', 'intel'], bug=303915) |
99 # The following three tests only fail. | 103 # The following three tests only fail. |
100 # Radar 13499677 | 104 # Radar 13499677 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 self.Fail('conformance/glsl/misc/empty_main.vert.html', | 162 self.Fail('conformance/glsl/misc/empty_main.vert.html', |
159 ['android'], bug=315976) | 163 ['android'], bug=315976) |
160 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', | 164 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', |
161 ['android'], bug=315976) | 165 ['android'], bug=315976) |
162 | 166 |
163 # Skip slow tests. | 167 # Skip slow tests. |
164 self.Skip('conformance/context/context-creation-and-destruction.html', | 168 self.Skip('conformance/context/context-creation-and-destruction.html', |
165 bug=322689) | 169 bug=322689) |
166 self.Skip('conformance/rendering/multisample-corruption.html', | 170 self.Skip('conformance/rendering/multisample-corruption.html', |
167 bug=322689) | 171 bug=322689) |
OLD | NEW |