| 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, url_prefixes=None): | 9 def __init__(self, conformance_path, url_prefixes=None): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 | 401 |
| 402 self.Flaky('deqp/functional/gles3/shaderindexing/mat_02.html', | 402 self.Flaky('deqp/functional/gles3/shaderindexing/mat_02.html', |
| 403 ['mac', 'amd'], bug=644360) | 403 ['mac', 'amd'], bug=644360) |
| 404 | 404 |
| 405 # These seem to be provoking intermittent GPU process crashes on | 405 # These seem to be provoking intermittent GPU process crashes on |
| 406 # the MacBook Pros with AMD GPUs. | 406 # the MacBook Pros with AMD GPUs. |
| 407 self.Flaky('deqp/functional/gles3/texturefiltering/*', | 407 self.Flaky('deqp/functional/gles3/texturefiltering/*', |
| 408 ['mac', 'amd'], bug=663601) | 408 ['mac', 'amd'], bug=663601) |
| 409 self.Flaky('deqp/functional/gles3/textureshadow/*', | 409 self.Flaky('deqp/functional/gles3/textureshadow/*', |
| 410 ['mac', 'amd'], bug=663601) | 410 ['mac', 'amd'], bug=663601) |
| 411 self.Flaky('deqp/functional/gles3/texturespecification/' + |
| 412 'teximage2d_unpack_params.html', |
| 413 ['mac', 'amd'], bug=679058) |
| 411 | 414 |
| 412 self.Fail('conformance2/rendering/clipping-wide-points.html', | 415 self.Fail('conformance2/rendering/clipping-wide-points.html', |
| 413 ['mac', 'amd'], bug=642822) | 416 ['mac', 'amd'], bug=642822) |
| 414 self.Fail('conformance2/reading/read-pixels-from-rgb8-into-pbo-bug.html', | 417 self.Fail('conformance2/reading/read-pixels-from-rgb8-into-pbo-bug.html', |
| 415 ['mac', 'amd'], bug=646182) | 418 ['mac', 'amd'], bug=646182) |
| 416 self.Fail('conformance2/rendering/instanced-rendering-bug.html', | 419 self.Fail('conformance2/rendering/instanced-rendering-bug.html', |
| 417 ['mac', 'amd'], bug=645298) | 420 ['mac', 'amd'], bug=645298) |
| 418 | 421 |
| 419 # Mac Pro with AMD GPU | 422 # Mac Pro with AMD GPU |
| 420 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', | 423 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 # self.Fail(page_name, | 858 # self.Fail(page_name, |
| 856 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 859 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 857 # self.Fail(page_name, | 860 # self.Fail(page_name, |
| 858 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 861 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 859 | 862 |
| 860 # Conflicts if between a generic os condition and a specific version | 863 # Conflicts if between a generic os condition and a specific version |
| 861 # self.Fail(page_name, | 864 # self.Fail(page_name, |
| 862 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 865 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 863 # self.Fail(page_name, | 866 # self.Fail(page_name, |
| 864 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 867 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |