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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 bug=483282) # owner:cwallez, test might be buggy | 58 bug=483282) # owner:cwallez, test might be buggy |
59 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', | 59 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', |
60 bug=625738) | 60 bug=625738) |
61 | 61 |
62 self.Fail('conformance/glsl/misc/uninitialized-local-global-variables.html', | 62 self.Fail('conformance/glsl/misc/uninitialized-local-global-variables.html', |
63 bug=1966) # angle bug ID | 63 bug=1966) # angle bug ID |
64 | 64 |
65 # Windows only. | 65 # Windows only. |
66 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', | 66 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', |
67 ['win', 'd3d11'], bug=644740) | 67 ['win', 'd3d11'], bug=644740) |
| 68 self.Fail('conformance2/textures/misc/tex-base-level-bug.html', |
| 69 ['win', 'd3d11'], bug=705865) |
68 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848) | 70 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848) |
69 | 71 |
70 # Win / NVidia | 72 # Win / NVidia |
71 self.Flaky('deqp/functional/gles3/fbomultisample*', | 73 self.Flaky('deqp/functional/gles3/fbomultisample*', |
72 ['win', 'nvidia', 'd3d11'], bug=631317) | 74 ['win', 'nvidia', 'd3d11'], bug=631317) |
73 self.Flaky('deqp/functional/gles3/texturefiltering/cube_combinations_*', | 75 self.Flaky('deqp/functional/gles3/texturefiltering/cube_combinations_*', |
74 ['win', 'nvidia'], bug=712739) | 76 ['win', 'nvidia'], bug=712739) |
75 self.Fail('conformance2/rendering/' + | 77 self.Fail('conformance2/rendering/' + |
76 'draw-with-integer-texture-base-level.html', | 78 'draw-with-integer-texture-base-level.html', |
77 ['win', 'nvidia', 'd3d11'], bug=679639) | 79 ['win', 'nvidia', 'd3d11'], bug=679639) |
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1146 # self.Fail(page_name, | 1148 # self.Fail(page_name, |
1147 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1149 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
1148 # self.Fail(page_name, | 1150 # self.Fail(page_name, |
1149 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1151 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
1150 | 1152 |
1151 # Conflicts if between a generic os condition and a specific version | 1153 # Conflicts if between a generic os condition and a specific version |
1152 # self.Fail(page_name, | 1154 # self.Fail(page_name, |
1153 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1155 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
1154 # self.Fail(page_name, | 1156 # self.Fail(page_name, |
1155 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1157 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |