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

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

Issue 1413883003: Add a presubmit script and pylintrc for content/test/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address kbr's comments Created 5 years, 2 months 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
OLDNEW
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2015 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 import os 4 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation s
5
6 from webgl_conformance_expectations import WebGLConformanceExpectations
7 5
8 # See the GpuTestExpectations class for documentation. 6 # See the GpuTestExpectations class for documentation.
9 7
10 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations):
11 def __init__(self, conformance_path): 9 def __init__(self, conformance_path):
12 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path)
13 11
14 def SetExpectations(self): 12 def SetExpectations(self):
15 # All platforms. 13 # All platforms.
16 self.Skip('deqp/data/gles3/shaders/constant_expressions.html', bug=483282) 14 self.Skip('deqp/data/gles3/shaders/constant_expressions.html', bug=483282)
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 # self.Fail(page_name, 276 # self.Fail(page_name,
279 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 277 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
280 # self.Fail(page_name, 278 # self.Fail(page_name,
281 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 279 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
282 280
283 # Conflicts if between a generic os condition and a specific version 281 # Conflicts if between a generic os condition and a specific version
284 # self.Fail(page_name, 282 # self.Fail(page_name,
285 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 283 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
286 # self.Fail(page_name, 284 # self.Fail(page_name,
287 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 285 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « content/test/gpu/gpu_tests/trace_test_expectations.py ('k') | content/test/gpu/gpu_tests/webgl_conformance.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698