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, |
11 # linux, chromeos, android | 11 # mavericks, yosemite, linux, chromeos, android |
12 # | 12 # |
13 # GPU vendors: | 13 # GPU vendors: |
14 # amd, arm, broadcom, hisilicon, intel, imagination, nvidia, qualcomm, | 14 # amd, arm, broadcom, hisilicon, intel, imagination, nvidia, qualcomm, |
15 # vivante | 15 # vivante |
16 # | 16 # |
17 # Specific GPUs can be listed as a tuple with vendor name and device ID. | 17 # Specific GPUs can be listed as a tuple with vendor name and device ID. |
18 # Examples: ('nvidia', 0x1234), ('arm', 'Mali-T604') | 18 # Examples: ('nvidia', 0x1234), ('arm', 'Mali-T604') |
19 # Device IDs must be paired with a GPU vendor. | 19 # Device IDs must be paired with a GPU vendor. |
20 | 20 |
21 class WebGLConformanceExpectations(test_expectations.TestExpectations): | 21 class WebGLConformanceExpectations(test_expectations.TestExpectations): |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 ['mac', ('intel', 0x116)], bug=225642) | 69 ['mac', ('intel', 0x116)], bug=225642) |
70 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 70 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
71 ['mac', ('intel', 0x116)], bug=369349) | 71 ['mac', ('intel', 0x116)], bug=369349) |
72 | 72 |
73 # Mac 10.8 / Intel HD 3000 failures | 73 # Mac 10.8 / Intel HD 3000 failures |
74 self.Fail('conformance/rendering/gl-scissor-test.html', | 74 self.Fail('conformance/rendering/gl-scissor-test.html', |
75 ['mountainlion', ('intel', 0x116)], bug=314997) | 75 ['mountainlion', ('intel', 0x116)], bug=314997) |
76 self.Fail('conformance/ogles/GL/operators/operators_009_to_016.html', | 76 self.Fail('conformance/ogles/GL/operators/operators_009_to_016.html', |
77 ['mountainlion', ('intel', 0x116)], bug=322795) | 77 ['mountainlion', ('intel', 0x116)], bug=322795) |
78 | 78 |
| 79 # Mac 10.9 / Intel HD 3000 failures |
| 80 self.Fail('conformance/ogles/GL/operators/operators_009_to_016.html', |
| 81 ['mavericks', ('intel', 0x116)], bug=417415) |
| 82 self.Fail('conformance/rendering/gl-scissor-test.html', |
| 83 ['mavericks', ('intel', 0x116)], bug=417415) |
| 84 |
79 # Mac Retina failures | 85 # Mac Retina failures |
80 self.Fail( | 86 self.Fail( |
81 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', | 87 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', |
82 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) | 88 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) |
83 | 89 |
84 # Mac 10.8 / ATI failures | 90 # Mac 10.8 / ATI failures |
85 self.Fail( | 91 self.Fail( |
86 'conformance/rendering/' + | 92 'conformance/rendering/' + |
87 'point-with-gl-pointcoord-in-fragment-shader.html', | 93 'point-with-gl-pointcoord-in-fragment-shader.html', |
88 ['mountainlion', 'amd']) | 94 ['mountainlion', 'amd']) |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 self.Fail('conformance/textures/texture-npot-video.html', | 243 self.Fail('conformance/textures/texture-npot-video.html', |
238 ['chromeos', ('intel', 0xa011)], bug=375554) | 244 ['chromeos', ('intel', 0xa011)], bug=375554) |
239 self.Fail('conformance/textures/texture-size.html', | 245 self.Fail('conformance/textures/texture-size.html', |
240 ['chromeos', ('intel', 0xa011)], bug=375554) | 246 ['chromeos', ('intel', 0xa011)], bug=375554) |
241 self.Fail('conformance/textures/texture-size-limit.html', | 247 self.Fail('conformance/textures/texture-size-limit.html', |
242 ['chromeos', ('intel', 0xa011)], bug=375554) | 248 ['chromeos', ('intel', 0xa011)], bug=375554) |
243 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 249 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
244 ['chromeos', ('intel', 0xa011)], bug=375554) | 250 ['chromeos', ('intel', 0xa011)], bug=375554) |
245 self.Skip('conformance/uniforms/uniform-default-values.html', | 251 self.Skip('conformance/uniforms/uniform-default-values.html', |
246 ['chromeos', ('intel', 0xa011)], bug=375554) | 252 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |