| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', | 277 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', |
| 278 ['linux', 'intel'], bug=540543) | 278 ['linux', 'intel'], bug=540543) |
| 279 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', | 279 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', |
| 280 ['linux', 'intel', 'opengl'], bug=1312) # ANGLE bug id | 280 ['linux', 'intel', 'opengl'], bug=1312) # ANGLE bug id |
| 281 self.Fail('deqp/data/gles2/shaders/linkage.html', | 281 self.Fail('deqp/data/gles2/shaders/linkage.html', |
| 282 ['linux', 'intel'], bug=540543) | 282 ['linux', 'intel'], bug=540543) |
| 283 self.Fail('deqp/data/gles2/shaders/preprocessor.html', | 283 self.Fail('deqp/data/gles2/shaders/preprocessor.html', |
| 284 ['linux', 'intel'], bug=1312) # ANGLE bug id. See also 598910 | 284 ['linux', 'intel'], bug=1312) # ANGLE bug id. See also 598910 |
| 285 self.Fail('conformance/glsl/bugs/sampler-array-using-loop-index.html', | 285 self.Fail('conformance/glsl/bugs/sampler-array-using-loop-index.html', |
| 286 ['linux', 'intel', 'opengl'], bug=598924) | 286 ['linux', 'intel', 'opengl'], bug=598924) |
| 287 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 287 self.Skip('conformance/uniforms/gl-uniform-arrays.html', |
| 288 ['linux', 'debug', ('intel', 0x412)], bug=604140) | 288 ['linux', 'debug', ('intel', 0x412)], bug=604140) |
| 289 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 289 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 290 ['linux', ('intel', 0x412), 'opengl'], bug=586536) | 290 ['linux', ('intel', 0x412), 'opengl'], bug=586536) |
| 291 | 291 |
| 292 # Android failures | 292 # Android failures |
| 293 self.Fail('deqp/data/gles2/shaders/constants.html', | 293 self.Fail('deqp/data/gles2/shaders/constants.html', |
| 294 ['android'], bug=478572) | 294 ['android'], bug=478572) |
| 295 self.Fail('deqp/data/gles2/shaders/conversions.html', | 295 self.Fail('deqp/data/gles2/shaders/conversions.html', |
| 296 ['android'], bug=478572) | 296 ['android'], bug=478572) |
| 297 self.Fail('deqp/data/gles2/shaders/declarations.html', | 297 self.Fail('deqp/data/gles2/shaders/declarations.html', |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 self.Fail('conformance/textures/misc/texture-npot.html', | 487 self.Fail('conformance/textures/misc/texture-npot.html', |
| 488 ['chromeos', ('intel', 0xa011)], bug=375554) | 488 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 489 self.Fail('conformance/textures/misc/texture-npot-video.html', | 489 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 490 ['chromeos', ('intel', 0xa011)], bug=375554) | 490 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 491 self.Fail('conformance/textures/misc/texture-size.html', | 491 self.Fail('conformance/textures/misc/texture-size.html', |
| 492 ['chromeos', ('intel', 0xa011)], bug=375554) | 492 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 493 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 493 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 494 ['chromeos', ('intel', 0xa011)], bug=375554) | 494 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 495 self.Skip('conformance/uniforms/uniform-default-values.html', | 495 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 496 ['chromeos', ('intel', 0xa011)], bug=375554) | 496 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |