OLD | NEW |
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 Loading... |
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']) |
OLD | NEW |