| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 self.Fail('conformance/rendering/gl-scissor-test.html', | 42 self.Fail('conformance/rendering/gl-scissor-test.html', |
| 43 ['win7', 'intel'], bug=314997) | 43 ['win7', 'intel'], bug=314997) |
| 44 self.Fail('conformance/context/premultiplyalpha-test.html', | 44 self.Fail('conformance/context/premultiplyalpha-test.html', |
| 45 ['win7', 'intel']) | 45 ['win7', 'intel']) |
| 46 self.Fail('conformance/textures/copy-tex-image-and-sub-image-2d.html', | 46 self.Fail('conformance/textures/copy-tex-image-and-sub-image-2d.html', |
| 47 ['win7', 'intel']) | 47 ['win7', 'intel']) |
| 48 self.Fail('conformance/rendering/gl-viewport-test.html', | 48 self.Fail('conformance/rendering/gl-viewport-test.html', |
| 49 ['win7', 'intel'], bug=372511) | 49 ['win7', 'intel'], bug=372511) |
| 50 self.Fail('conformance/glsl/misc/shader-with-array-of-structs-uniform.html', | 50 self.Fail('conformance/glsl/misc/shader-with-array-of-structs-uniform.html', |
| 51 ['win7', 'intel', 'nvidia'], bug=373972) | 51 ['win7', 'intel', 'nvidia'], bug=373972) |
| 52 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
| 53 ['win7', 'intel'], bug=398337) |
| 52 | 54 |
| 53 # Mac failures | 55 # Mac failures |
| 54 self.Fail('conformance/glsl/misc/shader-struct-scope.html', | 56 self.Fail('conformance/glsl/misc/shader-struct-scope.html', |
| 55 ['mac'], bug=368910) | 57 ['mac'], bug=368910) |
| 56 | 58 |
| 57 # Mac / Intel failures | 59 # Mac / Intel failures |
| 58 # Radar 13499466 | 60 # Radar 13499466 |
| 59 self.Fail('conformance/limits/gl-max-texture-dimensions.html', | 61 self.Fail('conformance/limits/gl-max-texture-dimensions.html', |
| 60 ['mac', 'intel'], bug=225642) | 62 ['mac', 'intel'], bug=225642) |
| 61 # Radar 13499623 | 63 # Radar 13499623 |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 self.Fail('conformance/textures/texture-npot-video.html', | 266 self.Fail('conformance/textures/texture-npot-video.html', |
| 265 ['chromeos', ('intel', 0xa011)], bug=375554) | 267 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 266 self.Fail('conformance/textures/texture-size.html', | 268 self.Fail('conformance/textures/texture-size.html', |
| 267 ['chromeos', ('intel', 0xa011)], bug=375554) | 269 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 268 self.Fail('conformance/textures/texture-size-limit.html', | 270 self.Fail('conformance/textures/texture-size-limit.html', |
| 269 ['chromeos', ('intel', 0xa011)], bug=375554) | 271 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 270 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 272 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 271 ['chromeos', ('intel', 0xa011)], bug=375554) | 273 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 272 self.Skip('conformance/uniforms/uniform-default-values.html', | 274 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 273 ['chromeos', ('intel', 0xa011)], bug=375554) | 275 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |