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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 self.Skip('conformance/ogles/GL/refract/refract_001_to_006.html', | 115 self.Skip('conformance/ogles/GL/refract/refract_001_to_006.html', |
116 ['lion', 'intel'], bug=323736) | 116 ['lion', 'intel'], bug=323736) |
117 self.Skip('conformance/ogles/GL/tan/tan_001_to_006.html', | 117 self.Skip('conformance/ogles/GL/tan/tan_001_to_006.html', |
118 ['lion', 'intel'], bug=323736) | 118 ['lion', 'intel'], bug=323736) |
119 # Two flaky tests. | 119 # Two flaky tests. |
120 self.Fail('conformance/ogles/GL/functions/functions_049_to_056.html', | 120 self.Fail('conformance/ogles/GL/functions/functions_049_to_056.html', |
121 ['lion', 'intel'], bug=393331) | 121 ['lion', 'intel'], bug=393331) |
122 self.Fail('conformance/extensions/webgl-compressed-texture-size-limit.html', | 122 self.Fail('conformance/extensions/webgl-compressed-texture-size-limit.html', |
123 ['lion', 'intel'], bug=393331) | 123 ['lion', 'intel'], bug=393331) |
124 | 124 |
125 # Linux NVIDIA failures | |
126 self.Fail('conformance/glsl/constructors/glsl-construct-bvec2.html', | |
127 ['linux', 'nvidia'], bug=391960) | |
128 self.Fail('conformance/glsl/constructors/glsl-construct-bvec3.html', | |
129 ['linux', 'nvidia'], bug=391960) | |
130 self.Fail('conformance/glsl/constructors/glsl-construct-bvec4.html', | |
131 ['linux', 'nvidia'], bug=391960) | |
132 self.Fail('conformance/glsl/constructors/glsl-construct-ivec2.html', | |
133 ['linux', 'nvidia'], bug=391960) | |
134 self.Fail('conformance/glsl/constructors/glsl-construct-ivec3.html', | |
135 ['linux', 'nvidia'], bug=391960) | |
136 self.Fail('conformance/glsl/constructors/glsl-construct-ivec4.html', | |
137 ['linux', 'nvidia'], bug=391960) | |
138 self.Fail('conformance/glsl/constructors/glsl-construct-vec2.html', | |
139 ['linux', 'nvidia'], bug=391960) | |
140 self.Fail('conformance/glsl/constructors/glsl-construct-vec3.html', | |
141 ['linux', 'nvidia'], bug=391960) | |
142 self.Fail('conformance/glsl/constructors/glsl-construct-vec4.html', | |
143 ['linux', 'nvidia'], bug=391960) | |
144 | |
145 # Android failures | 125 # Android failures |
146 # The following test is very slow and therefore times out on Android bot. | 126 # The following test is very slow and therefore times out on Android bot. |
147 self.Skip('conformance/rendering/multisample-corruption.html', | 127 self.Skip('conformance/rendering/multisample-corruption.html', |
148 ['android']) | 128 ['android']) |
149 # The following test times out on Android bot. | 129 # The following test times out on Android bot. |
150 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 130 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
151 ['android'], bug=369300) | 131 ['android'], bug=369300) |
152 self.Fail('conformance/glsl/misc/empty_main.vert.html', | 132 self.Fail('conformance/glsl/misc/empty_main.vert.html', |
153 ['android'], bug=315976) | 133 ['android'], bug=315976) |
154 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', | 134 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 self.Fail('conformance/textures/texture-npot-video.html', | 232 self.Fail('conformance/textures/texture-npot-video.html', |
253 ['chromeos', ('intel', 0xa011)], bug=375554) | 233 ['chromeos', ('intel', 0xa011)], bug=375554) |
254 self.Fail('conformance/textures/texture-size.html', | 234 self.Fail('conformance/textures/texture-size.html', |
255 ['chromeos', ('intel', 0xa011)], bug=375554) | 235 ['chromeos', ('intel', 0xa011)], bug=375554) |
256 self.Fail('conformance/textures/texture-size-limit.html', | 236 self.Fail('conformance/textures/texture-size-limit.html', |
257 ['chromeos', ('intel', 0xa011)], bug=375554) | 237 ['chromeos', ('intel', 0xa011)], bug=375554) |
258 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 238 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
259 ['chromeos', ('intel', 0xa011)], bug=375554) | 239 ['chromeos', ('intel', 0xa011)], bug=375554) |
260 self.Skip('conformance/uniforms/uniform-default-values.html', | 240 self.Skip('conformance/uniforms/uniform-default-values.html', |
261 ['chromeos', ('intel', 0xa011)], bug=375554) | 241 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |