| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 'tex-3d-rgb5_a1-rgba-unsigned_byte.html', | 305 'tex-3d-rgb5_a1-rgba-unsigned_byte.html', |
| 306 ['win8'], bug=483282) | 306 ['win8'], bug=483282) |
| 307 | 307 |
| 308 # Windows Debug. Causing assertions in the GPU process which raise | 308 # Windows Debug. Causing assertions in the GPU process which raise |
| 309 # a dialog box, so have to skip them rather than mark them as | 309 # a dialog box, so have to skip them rather than mark them as |
| 310 # failing. | 310 # failing. |
| 311 self.Skip('conformance2/textures/canvas/' + | 311 self.Skip('conformance2/textures/canvas/' + |
| 312 'tex-2d-rgba8-rgba-unsigned_byte.html', | 312 'tex-2d-rgba8-rgba-unsigned_byte.html', |
| 313 ['win', 'debug'], bug=542901) | 313 ['win', 'debug'], bug=542901) |
| 314 | 314 |
| 315 # Win / NVidia | 315 # This test actually passes from time to time. |
| 316 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_00.html', | 316 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_00.html', |
| 317 ['win', 'nvidia'], bug=606021) | 317 ['win'], bug=606021) |
| 318 | 318 |
| 319 # Win / AMD | 319 # Win / AMD |
| 320 # It's unfortunate that this suppression needs to be so broad, but | 320 # It's unfortunate that this suppression needs to be so broad, but |
| 321 # basically any test that uses readPixels is potentially flaky, and | 321 # basically any test that uses readPixels is potentially flaky, and |
| 322 # it's infeasible to suppress individual failures one by one. | 322 # it's infeasible to suppress individual failures one by one. |
| 323 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) | 323 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) |
| 324 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) | 324 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) |
| 325 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_00.html', | |
| 326 ['win', ('amd', 0x6779)], bug=606021) | |
| 327 | 325 |
| 328 # Win / Intel | 326 # Win / Intel |
| 329 self.Fail('conformance2/buffers/uniform-buffers.html', | 327 self.Fail('conformance2/buffers/uniform-buffers.html', |
| 330 ['win', 'intel'], bug=483282) | 328 ['win', 'intel'], bug=483282) |
| 331 self.Fail('deqp/functional/gles3/shaderstruct.html', | 329 self.Fail('deqp/functional/gles3/shaderstruct.html', |
| 332 ['win', 'intel'], bug=483282) | 330 ['win', 'intel'], bug=483282) |
| 333 | 331 |
| 334 # Mac only. | 332 # Mac only. |
| 335 self.Fail('deqp/functional/gles3/texturefiltering/cube_formats_*', | 333 self.Fail('deqp/functional/gles3/texturefiltering/cube_formats_*', |
| 336 ['mac'], bug=606074) | 334 ['mac'], bug=606074) |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 # self.Fail(page_name, | 522 # self.Fail(page_name, |
| 525 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 523 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 526 # self.Fail(page_name, | 524 # self.Fail(page_name, |
| 527 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 525 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 528 | 526 |
| 529 # Conflicts if between a generic os condition and a specific version | 527 # Conflicts if between a generic os condition and a specific version |
| 530 # self.Fail(page_name, | 528 # self.Fail(page_name, |
| 531 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 529 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 532 # self.Fail(page_name, | 530 # self.Fail(page_name, |
| 533 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 531 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |