| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 ['win', 'debug'], bug=542901) | 311 ['win', 'debug'], bug=542901) |
| 312 | 312 |
| 313 # This test actually passes from time to time. | 313 # This test actually passes from time to time. |
| 314 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_00.html', | 314 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_00.html', |
| 315 ['win'], bug=606021) | 315 ['win'], bug=606021) |
| 316 # More intermittently flaky. | 316 # More intermittently flaky. |
| 317 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_03.html', | 317 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_03.html', |
| 318 ['win'], bug=606021) | 318 ['win'], bug=606021) |
| 319 | 319 |
| 320 # Win / Release. | 320 # Win / Release. |
| 321 self.Flaky('deqp/functional/gles3/texturefiltering/cube_combinations_01', | 321 self.Flaky( |
| 322 'deqp/functional/gles3/texturefiltering/cube_combinations_01.html', |
| 322 ['win', 'release'], bug=607393) | 323 ['win', 'release'], bug=607393) |
| 323 self.Flaky('deqp/functional/gles3/texturefiltering/cube_combinations_05', | 324 self.Flaky( |
| 325 'deqp/functional/gles3/texturefiltering/cube_combinations_05.html', |
| 324 ['win', 'release'], bug=607393) | 326 ['win', 'release'], bug=607393) |
| 325 | 327 |
| 326 # Win / AMD | 328 # Win / AMD |
| 327 # It's unfortunate that this suppression needs to be so broad, but | 329 # It's unfortunate that this suppression needs to be so broad, but |
| 328 # basically any test that uses readPixels is potentially flaky, and | 330 # basically any test that uses readPixels is potentially flaky, and |
| 329 # it's infeasible to suppress individual failures one by one. | 331 # it's infeasible to suppress individual failures one by one. |
| 330 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) | 332 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) |
| 331 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) | 333 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) |
| 332 | 334 |
| 333 # Win / Intel | 335 # Win / Intel |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 # self.Fail(page_name, | 527 # self.Fail(page_name, |
| 526 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 528 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 527 # self.Fail(page_name, | 529 # self.Fail(page_name, |
| 528 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 530 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 529 | 531 |
| 530 # Conflicts if between a generic os condition and a specific version | 532 # Conflicts if between a generic os condition and a specific version |
| 531 # self.Fail(page_name, | 533 # self.Fail(page_name, |
| 532 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 534 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 533 # self.Fail(page_name, | 535 # self.Fail(page_name, |
| 534 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 536 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |