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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 ['android'], bug=306485) | 152 ['android'], bug=306485) |
153 # The following test is very slow and therefore times out on Android bot. | 153 # The following test is very slow and therefore times out on Android bot. |
154 self.Skip('conformance/rendering/multisample-corruption.html', | 154 self.Skip('conformance/rendering/multisample-corruption.html', |
155 ['android']) | 155 ['android']) |
156 self.Fail('conformance/canvas/drawingbuffer-test.html', | 156 self.Fail('conformance/canvas/drawingbuffer-test.html', |
157 ['android'], bug=314997) | 157 ['android'], bug=314997) |
158 self.Fail('conformance/glsl/misc/empty_main.vert.html', | 158 self.Fail('conformance/glsl/misc/empty_main.vert.html', |
159 ['android'], bug=315976) | 159 ['android'], bug=315976) |
160 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', | 160 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', |
161 ['android'], bug=315976) | 161 ['android'], bug=315976) |
| 162 |
| 163 # Skip slow tests. |
| 164 self.Skip('conformance/context/context-creation-and-destruction.html', |
| 165 bug=322689) |
| 166 self.Skip('conformance/rendering/multisample-corruption.html', |
| 167 bug=322689) |
OLD | NEW |