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 12 matching lines...) Expand all Loading... |
23 # Sample Usage: | 23 # Sample Usage: |
24 # self.Fail('gl-enable-vertex-attrib.html', | 24 # self.Fail('gl-enable-vertex-attrib.html', |
25 # ['mac', 'amd', ('nvidia', 0x1234)], bug=123) | 25 # ['mac', 'amd', ('nvidia', 0x1234)], bug=123) |
26 | 26 |
27 # Windows/Intel failures | 27 # Windows/Intel failures |
28 self.Fail('conformance/textures/texture-size.html', | 28 self.Fail('conformance/textures/texture-size.html', |
29 ['win', 'intel'], bug=121139) | 29 ['win', 'intel'], bug=121139) |
30 self.Fail('conformance/rendering/gl-scissor-test.html', | 30 self.Fail('conformance/rendering/gl-scissor-test.html', |
31 ['win', 'intel'], bug=314997) | 31 ['win', 'intel'], bug=314997) |
32 | 32 |
33 # Windows/ATI failures | 33 # Windows/AMD failures |
34 self.Fail('conformance/rendering/more-than-65536-indices.html', | 34 self.Fail('conformance/rendering/more-than-65536-indices.html', |
35 ['win', 'ati'], bug=314997) | 35 ['win', 'amd'], bug=314997) |
36 | 36 |
37 # Windows 7/Intel failures | 37 # Windows 7/Intel failures |
38 self.Fail('conformance/context/context-lost-restored.html', | 38 self.Fail('conformance/context/context-lost-restored.html', |
39 ['win7', 'intel']) | 39 ['win7', 'intel']) |
40 self.Fail('conformance/context/premultiplyalpha-test.html', | 40 self.Fail('conformance/context/premultiplyalpha-test.html', |
41 ['win7', 'intel']) | 41 ['win7', 'intel']) |
42 self.Fail('conformance/extensions/oes-texture-float-with-image-data.html', | 42 self.Fail('conformance/extensions/oes-texture-float-with-image-data.html', |
43 ['win7', 'intel']) | 43 ['win7', 'intel']) |
44 self.Fail('conformance/extensions/oes-texture-float.html', | 44 self.Fail('conformance/extensions/oes-texture-float.html', |
45 ['win7', 'intel']) | 45 ['win7', 'intel']) |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 | 149 |
150 # Android failures | 150 # Android failures |
151 self.Fail('conformance/textures/texture-npot-video.html', | 151 self.Fail('conformance/textures/texture-npot-video.html', |
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 | 158 |
OLD | NEW |