Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(741)

Side by Side Diff: content/test/gpu/gpu_tests/webgl_conformance_expectations.py

Issue 83953004: WebGL conformance test expectations update (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 10 matching lines...) Expand all
21 class WebGLConformanceExpectations(test_expectations.TestExpectations): 21 class WebGLConformanceExpectations(test_expectations.TestExpectations):
22 def SetExpectations(self): 22 def SetExpectations(self):
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 # Fails everywhere. 27 # Fails everywhere.
28 self.Skip('conformance/glsl/misc/large-loop-compile.html', 28 self.Skip('conformance/glsl/misc/large-loop-compile.html',
29 bug=322764) 29 bug=322764)
30 30
31 # Windows failures.
32 self.Fail('conformance/ogles/GL/atan/atan_001_to_008.html',
33 ['win'], bug=322794)
34 self.Fail('conformance/ogles/GL/atan/atan_009_to_012.html',
35 ['win'], bug=322794)
36 self.Fail('conformance/ogles/GL/control_flow/control_flow_001_to_008.html',
37 ['win'], bug=322795)
38
31 # Windows/Intel failures 39 # Windows/Intel failures
32 self.Fail('conformance/textures/texture-size.html', 40 self.Fail('conformance/textures/texture-size.html',
33 ['win', 'intel'], bug=121139) 41 ['win', 'intel'], bug=121139)
34 self.Fail('conformance/rendering/gl-scissor-test.html', 42 self.Fail('conformance/rendering/gl-scissor-test.html',
35 ['win', 'intel'], bug=314997) 43 ['win', 'intel'], bug=314997)
36 44
37 # Windows/AMD failures 45 # Windows/AMD failures
38 self.Fail('conformance/rendering/more-than-65536-indices.html', 46 self.Fail('conformance/rendering/more-than-65536-indices.html',
39 ['win', 'amd'], bug=314997) 47 ['win', 'amd'], bug=314997)
40 48
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 self.Fail('conformance/glsl/misc/empty_main.vert.html', 184 self.Fail('conformance/glsl/misc/empty_main.vert.html',
177 ['android'], bug=315976) 185 ['android'], bug=315976)
178 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html', 186 self.Fail('conformance/glsl/misc/gl_position_unset.vert.html',
179 ['android'], bug=315976) 187 ['android'], bug=315976)
180 188
181 # Skip slow tests. 189 # Skip slow tests.
182 self.Skip('conformance/context/context-creation-and-destruction.html', 190 self.Skip('conformance/context/context-creation-and-destruction.html',
183 bug=322689) 191 bug=322689)
184 self.Skip('conformance/rendering/multisample-corruption.html', 192 self.Skip('conformance/rendering/multisample-corruption.html',
185 bug=322689) 193 bug=322689)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698