| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 gpu_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations |
| 7 | 7 |
| 8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
| 9 | 9 |
| 10 class WebGLConformanceExpectations(GpuTestExpectations): | 10 class WebGLConformanceExpectations(GpuTestExpectations): |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 283 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 284 ['linux', 'intel'], bug=540543) # ANGLE bug 1276 | 284 ['linux', 'intel'], bug=540543) # ANGLE bug 1276 |
| 285 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', | 285 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', |
| 286 ['linux', 'intel'], bug=540543) | 286 ['linux', 'intel'], bug=540543) |
| 287 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', | 287 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', |
| 288 ['linux', 'intel', 'opengl'], bug=1312) # ANGLE bug id | 288 ['linux', 'intel', 'opengl'], bug=1312) # ANGLE bug id |
| 289 self.Fail('deqp/data/gles2/shaders/linkage.html', | 289 self.Fail('deqp/data/gles2/shaders/linkage.html', |
| 290 ['linux', 'intel'], bug=540543) | 290 ['linux', 'intel'], bug=540543) |
| 291 self.Fail('deqp/data/gles2/shaders/preprocessor.html', | 291 self.Fail('deqp/data/gles2/shaders/preprocessor.html', |
| 292 ['linux', 'intel'], bug=1312) # ANGLE bug id. See also 598910 | 292 ['linux', 'intel'], bug=1312) # ANGLE bug id. See also 598910 |
| 293 # The Mesa Intel driver has a scoping bug, see |
| 294 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 |
| 295 self.Fail('deqp/data/gles2/shaders/scoping.html', |
| 296 ['linux', 'intel'], bug=610800) |
| 293 self.Fail('conformance/glsl/bugs/sampler-array-using-loop-index.html', | 297 self.Fail('conformance/glsl/bugs/sampler-array-using-loop-index.html', |
| 294 ['linux', 'intel', 'opengl'], bug=598924) | 298 ['linux', 'intel', 'opengl'], bug=598924) |
| 295 self.Skip('conformance/uniforms/gl-uniform-arrays.html', | 299 self.Skip('conformance/uniforms/gl-uniform-arrays.html', |
| 296 ['linux', 'debug', ('intel', 0x412)], bug=604140) | 300 ['linux', 'debug', ('intel', 0x412)], bug=604140) |
| 297 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 301 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 298 ['linux', ('intel', 0x412), 'opengl'], bug=586536) | 302 ['linux', ('intel', 0x412), 'opengl'], bug=586536) |
| 299 | 303 |
| 300 # Android failures | 304 # Android failures |
| 301 self.Fail('deqp/data/gles2/shaders/constants.html', | 305 self.Fail('deqp/data/gles2/shaders/constants.html', |
| 302 ['android'], bug=478572) | 306 ['android'], bug=478572) |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 self.Fail('conformance/textures/misc/texture-npot.html', | 507 self.Fail('conformance/textures/misc/texture-npot.html', |
| 504 ['chromeos', ('intel', 0xa011)], bug=375554) | 508 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 505 self.Fail('conformance/textures/misc/texture-npot-video.html', | 509 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 506 ['chromeos', ('intel', 0xa011)], bug=375554) | 510 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 507 self.Fail('conformance/textures/misc/texture-size.html', | 511 self.Fail('conformance/textures/misc/texture-size.html', |
| 508 ['chromeos', ('intel', 0xa011)], bug=375554) | 512 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 509 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 513 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 510 ['chromeos', ('intel', 0xa011)], bug=375554) | 514 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 511 self.Skip('conformance/uniforms/uniform-default-values.html', | 515 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 512 ['chromeos', ('intel', 0xa011)], bug=375554) | 516 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |