| 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, is_asan=False): | 9 def __init__(self, conformance_path, url_prefixes=None, is_asan=False): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 bug=712584) | 67 bug=712584) |
| 68 | 68 |
| 69 # Windows only. | 69 # Windows only. |
| 70 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', | 70 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', |
| 71 ['win', 'd3d11'], bug=644740) | 71 ['win', 'd3d11'], bug=644740) |
| 72 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848) | 72 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848) |
| 73 | 73 |
| 74 # Win / NVidia | 74 # Win / NVidia |
| 75 self.Flaky('deqp/functional/gles3/fbomultisample*', | 75 self.Flaky('deqp/functional/gles3/fbomultisample*', |
| 76 ['win', 'nvidia', 'd3d11'], bug=631317) | 76 ['win', 'nvidia', 'd3d11'], bug=631317) |
| 77 self.Flaky('deqp/functional/gles3/texturefiltering/cube_combinations_*', |
| 78 ['win', 'nvidia'], bug=712739) |
| 77 self.Fail('conformance2/rendering/' + | 79 self.Fail('conformance2/rendering/' + |
| 78 'draw-with-integer-texture-base-level.html', | 80 'draw-with-integer-texture-base-level.html', |
| 79 ['win', 'nvidia', 'd3d11'], bug=679639) | 81 ['win', 'nvidia', 'd3d11'], bug=679639) |
| 80 | 82 |
| 81 # Win10 / NVIDIA Quadro P400 failures | 83 # Win10 / NVIDIA Quadro P400 failures |
| 82 self.Fail('deqp/functional/gles3/transformfeedback/' + | 84 self.Fail('deqp/functional/gles3/transformfeedback/' + |
| 83 'basic_types_interleaved_lines.html', | 85 'basic_types_interleaved_lines.html', |
| 84 ['win10', ('nvidia', 0x1cb3), 'd3d11'], bug=680754) | 86 ['win10', ('nvidia', 0x1cb3), 'd3d11'], bug=680754) |
| 85 self.Fail('deqp/functional/gles3/transformfeedback/' + | 87 self.Fail('deqp/functional/gles3/transformfeedback/' + |
| 86 'basic_types_interleaved_triangles.html', | 88 'basic_types_interleaved_triangles.html', |
| (...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1115 # self.Fail(page_name, | 1117 # self.Fail(page_name, |
| 1116 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1118 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1117 # self.Fail(page_name, | 1119 # self.Fail(page_name, |
| 1118 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1120 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1119 | 1121 |
| 1120 # Conflicts if between a generic os condition and a specific version | 1122 # Conflicts if between a generic os condition and a specific version |
| 1121 # self.Fail(page_name, | 1123 # self.Fail(page_name, |
| 1122 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1124 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1123 # self.Fail(page_name, | 1125 # self.Fail(page_name, |
| 1124 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1126 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |