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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 self.Fail('conformance/textures/tex-image-and-sub-image-2d-with-webgl-canvas
-rgb565.html', | 46 self.Fail('conformance/textures/tex-image-and-sub-image-2d-with-webgl-canvas
-rgb565.html', |
47 ['win'], bug=420357) | 47 ['win'], bug=420357) |
48 self.Fail('conformance/textures/tex-image-and-sub-image-2d-with-webgl-canvas
-rgba4444.html', | 48 self.Fail('conformance/textures/tex-image-and-sub-image-2d-with-webgl-canvas
-rgba4444.html', |
49 ['win'], bug=420357) | 49 ['win'], bug=420357) |
50 self.Fail('conformance/textures/tex-image-and-sub-image-2d-with-webgl-canvas
-rgba5551.html', | 50 self.Fail('conformance/textures/tex-image-and-sub-image-2d-with-webgl-canvas
-rgba5551.html', |
51 ['win'], bug=420357) | 51 ['win'], bug=420357) |
52 self.Fail('conformance/glsl/misc/ternary-operators-in-global-initializers.ht
ml', | 52 self.Fail('conformance/glsl/misc/ternary-operators-in-global-initializers.ht
ml', |
53 ['win'], bug=415694) | 53 ['win'], bug=415694) |
54 self.Fail('conformance/glsl/misc/ternary-operators-in-initializers.html', | 54 self.Fail('conformance/glsl/misc/ternary-operators-in-initializers.html', |
55 ['win'], bug=415694) | 55 ['win'], bug=415694) |
| 56 # This test still causes itself and any tests afterwards to time out |
| 57 # in Win Debug bots. |
| 58 self.Skip('conformance/textures/texture-copying-feedback-loops.html', |
| 59 ['Win'], bug=421695) |
56 | 60 |
57 # Win7 / Intel failures | 61 # Win7 / Intel failures |
58 self.Fail('conformance/rendering/gl-scissor-test.html', | 62 self.Fail('conformance/rendering/gl-scissor-test.html', |
59 ['win7', 'intel'], bug=314997) | 63 ['win7', 'intel'], bug=314997) |
60 self.Fail('conformance/context/premultiplyalpha-test.html', | 64 self.Fail('conformance/context/premultiplyalpha-test.html', |
61 ['win7', 'intel']) | 65 ['win7', 'intel']) |
62 self.Fail('conformance/textures/copy-tex-image-and-sub-image-2d.html', | 66 self.Fail('conformance/textures/copy-tex-image-and-sub-image-2d.html', |
63 ['win7', 'intel']) | 67 ['win7', 'intel']) |
64 self.Fail('conformance/rendering/gl-viewport-test.html', | 68 self.Fail('conformance/rendering/gl-viewport-test.html', |
65 ['win7', 'intel'], bug=372511) | 69 ['win7', 'intel'], bug=372511) |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 self.Fail('conformance/textures/texture-npot-video.html', | 265 self.Fail('conformance/textures/texture-npot-video.html', |
262 ['chromeos', ('intel', 0xa011)], bug=375554) | 266 ['chromeos', ('intel', 0xa011)], bug=375554) |
263 self.Fail('conformance/textures/texture-size.html', | 267 self.Fail('conformance/textures/texture-size.html', |
264 ['chromeos', ('intel', 0xa011)], bug=375554) | 268 ['chromeos', ('intel', 0xa011)], bug=375554) |
265 self.Fail('conformance/textures/texture-size-limit.html', | 269 self.Fail('conformance/textures/texture-size-limit.html', |
266 ['chromeos', ('intel', 0xa011)], bug=375554) | 270 ['chromeos', ('intel', 0xa011)], bug=375554) |
267 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 271 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
268 ['chromeos', ('intel', 0xa011)], bug=375554) | 272 ['chromeos', ('intel', 0xa011)], bug=375554) |
269 self.Skip('conformance/uniforms/uniform-default-values.html', | 273 self.Skip('conformance/uniforms/uniform-default-values.html', |
270 ['chromeos', ('intel', 0xa011)], bug=375554) | 274 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |