| 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 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s | 4 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s |
| 5 | 5 |
| 6 # See the GpuTestExpectations class for documentation. | 6 # See the GpuTestExpectations class for documentation. |
| 7 | 7 |
| 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): | 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): |
| 9 def __init__(self, conformance_path): | 9 def __init__(self, conformance_path): |
| 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) | 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 self.Fail('conformance2/textures/video/*', ['mac'], bug=483282) | 214 self.Fail('conformance2/textures/video/*', ['mac'], bug=483282) |
| 215 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html', | 215 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html', |
| 216 ['mac'], bug=483282) | 216 ['mac'], bug=483282) |
| 217 self.Fail('conformance2/textures/misc/texture-npot.html', | 217 self.Fail('conformance2/textures/misc/texture-npot.html', |
| 218 ['mac'], bug=483282) | 218 ['mac'], bug=483282) |
| 219 self.Fail('conformance2/textures/misc/tex-storage-compressed-formats.html', | 219 self.Fail('conformance2/textures/misc/tex-storage-compressed-formats.html', |
| 220 ['mac'], bug=295792) | 220 ['mac'], bug=295792) |
| 221 self.Fail('conformance2/renderbuffers/framebuffer-object-attachment.html', | 221 self.Fail('conformance2/renderbuffers/framebuffer-object-attachment.html', |
| 222 ['mac'], bug=564020) | 222 ['mac'], bug=564020) |
| 223 | 223 |
| 224 self.Fail('conformance2/textures/misc/compressed-tex-image.html', |
| 225 ['mac'], bug=565438) |
| 226 |
| 224 # Mac 10.9 only. | 227 # Mac 10.9 only. |
| 225 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', | 228 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', |
| 226 ['mavericks'], bug=483282) | 229 ['mavericks'], bug=483282) |
| 227 | 230 |
| 228 # Linux only. | 231 # Linux only. |
| 229 self.Skip('deqp/functional/gles3/shaderswitch.html', | 232 self.Skip('deqp/functional/gles3/shaderswitch.html', |
| 230 ['linux'], bug=483282) | 233 ['linux'], bug=483282) |
| 231 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', | 234 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', |
| 232 ['linux'], bug=483282) | 235 ['linux'], bug=483282) |
| 233 self.Fail('conformance2/rendering/draw-buffers.html', | 236 self.Fail('conformance2/rendering/draw-buffers.html', |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 # self.Fail(page_name, | 320 # self.Fail(page_name, |
| 318 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 321 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 319 # self.Fail(page_name, | 322 # self.Fail(page_name, |
| 320 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 323 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 321 | 324 |
| 322 # Conflicts if between a generic os condition and a specific version | 325 # Conflicts if between a generic os condition and a specific version |
| 323 # self.Fail(page_name, | 326 # self.Fail(page_name, |
| 324 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 327 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 325 # self.Fail(page_name, | 328 # self.Fail(page_name, |
| 326 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 329 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |