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 import os | 4 import os |
5 | 5 |
6 from webgl_conformance_expectations import WebGLConformanceExpectations | 6 from webgl_conformance_expectations import WebGLConformanceExpectations |
7 | 7 |
8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
9 | 9 |
10 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): | 10 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 ['win8'], bug=483282) | 140 ['win8'], bug=483282) |
141 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-2d' + | 141 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-2d' + |
142 '-with-svg-image-rgb5_a1-rgba-unsigned_byte.html', | 142 '-with-svg-image-rgb5_a1-rgba-unsigned_byte.html', |
143 ['win8'], bug=483282) | 143 ['win8'], bug=483282) |
144 self.Fail('conformance2/textures/video/tex-image-and-sub-image-2d' + | 144 self.Fail('conformance2/textures/video/tex-image-and-sub-image-2d' + |
145 '-with-video-rgb565-rgb-unsigned_byte.html', | 145 '-with-video-rgb565-rgb-unsigned_byte.html', |
146 ['win8'], bug=483282) | 146 ['win8'], bug=483282) |
147 self.Fail('conformance2/textures/video/tex-image-and-sub-image-2d' + | 147 self.Fail('conformance2/textures/video/tex-image-and-sub-image-2d' + |
148 '-with-video-rgb5_a1-rgba-unsigned_byte.html', | 148 '-with-video-rgb5_a1-rgba-unsigned_byte.html', |
149 ['win8'], bug=483282) | 149 ['win8'], bug=483282) |
| 150 # Windows Debug. Causing assertions in the GPU process which raise |
| 151 # a dialog box, so have to skip them rather than mark them as |
| 152 # failing. |
| 153 self.Skip('conformance2/textures/canvas/tex-image-and-sub-image-2d' + |
| 154 '-with-canvas-rgba8-rgba-unsigned_byte.html', |
| 155 ['win', 'debug'], bug=542901) |
150 | 156 |
151 # Mac only. | 157 # Mac only. |
152 self.Skip('deqp/data/gles3/shaders/qualification_order.html', | 158 self.Skip('deqp/data/gles3/shaders/qualification_order.html', |
153 ['mac'], bug=483282) | 159 ['mac'], bug=483282) |
154 self.Skip('deqp/data/gles3/shaders/scoping.html', | 160 self.Skip('deqp/data/gles3/shaders/scoping.html', |
155 ['mac'], bug=483282) | 161 ['mac'], bug=483282) |
156 self.Skip('deqp/functional/gles3/defaultvertexattribute.html', | 162 self.Skip('deqp/functional/gles3/defaultvertexattribute.html', |
157 ['mac'], bug=483282) | 163 ['mac'], bug=483282) |
158 self.Skip('deqp/functional/gles3/floatstatequery.html', | 164 self.Skip('deqp/functional/gles3/floatstatequery.html', |
159 ['mac'], bug=483282) | 165 ['mac'], bug=483282) |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 # Linux NVIDIA only. | 236 # Linux NVIDIA only. |
231 self.Skip('deqp/functional/gles3/shaderswitch.html', | 237 self.Skip('deqp/functional/gles3/shaderswitch.html', |
232 ['linux', 'nvidia'], bug=483282) | 238 ['linux', 'nvidia'], bug=483282) |
233 # Linux AMD only (but fails on all Linux, so not specified as AMD specific) | 239 # Linux AMD only (but fails on all Linux, so not specified as AMD specific) |
234 # It looks like AMD shader compiler rejects many valid ES3 semantics. | 240 # It looks like AMD shader compiler rejects many valid ES3 semantics. |
235 self.Skip('deqp/data/gles3/shaders/arrays.html', ['linux'], bug=483282) | 241 self.Skip('deqp/data/gles3/shaders/arrays.html', ['linux'], bug=483282) |
236 self.Skip('deqp/data/gles3/shaders/constant_expressions.html', | 242 self.Skip('deqp/data/gles3/shaders/constant_expressions.html', |
237 ['linux'], bug=483282) | 243 ['linux'], bug=483282) |
238 self.Skip('deqp/data/gles3/shaders/qualification_order.html', | 244 self.Skip('deqp/data/gles3/shaders/qualification_order.html', |
239 ['linux'], bug=483282) | 245 ['linux'], bug=483282) |
OLD | NEW |