| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', | 213 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', |
| 214 ['linux', 'intel'], bug=540543) | 214 ['linux', 'intel'], bug=540543) |
| 215 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', | 215 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', |
| 216 ['linux', 'intel', 'opengl'], bug=1312) # ANGLE bug id | 216 ['linux', 'intel', 'opengl'], bug=1312) # ANGLE bug id |
| 217 self.Fail('deqp/data/gles2/shaders/linkage.html', | 217 self.Fail('deqp/data/gles2/shaders/linkage.html', |
| 218 ['linux', 'intel'], bug=540543) | 218 ['linux', 'intel'], bug=540543) |
| 219 self.Fail('deqp/data/gles2/shaders/preprocessor.html', | 219 self.Fail('deqp/data/gles2/shaders/preprocessor.html', |
| 220 ['linux', 'intel'], bug=1312) # ANGLE bug id. See also 598910 | 220 ['linux', 'intel'], bug=1312) # ANGLE bug id. See also 598910 |
| 221 self.Fail('conformance/glsl/bugs/sampler-array-using-loop-index.html', | 221 self.Fail('conformance/glsl/bugs/sampler-array-using-loop-index.html', |
| 222 ['linux', 'intel', 'opengl'], bug=598924) | 222 ['linux', 'intel', 'opengl'], bug=598924) |
| 223 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 224 ['linux', 'debug', ('intel', 0x412)], bug=604140) |
| 223 | 225 |
| 224 # Android failures | 226 # Android failures |
| 225 self.Fail('deqp/data/gles2/shaders/constants.html', | 227 self.Fail('deqp/data/gles2/shaders/constants.html', |
| 226 ['android'], bug=478572) | 228 ['android'], bug=478572) |
| 227 self.Fail('deqp/data/gles2/shaders/conversions.html', | 229 self.Fail('deqp/data/gles2/shaders/conversions.html', |
| 228 ['android'], bug=478572) | 230 ['android'], bug=478572) |
| 229 self.Fail('deqp/data/gles2/shaders/declarations.html', | 231 self.Fail('deqp/data/gles2/shaders/declarations.html', |
| 230 ['android'], bug=478572) | 232 ['android'], bug=478572) |
| 231 self.Fail('deqp/data/gles2/shaders/linkage.html', | 233 self.Fail('deqp/data/gles2/shaders/linkage.html', |
| 232 ['android'], bug=478572) | 234 ['android'], bug=478572) |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 self.Fail('conformance/textures/misc/texture-npot.html', | 421 self.Fail('conformance/textures/misc/texture-npot.html', |
| 420 ['chromeos', ('intel', 0xa011)], bug=375554) | 422 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 421 self.Fail('conformance/textures/misc/texture-npot-video.html', | 423 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 422 ['chromeos', ('intel', 0xa011)], bug=375554) | 424 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 423 self.Fail('conformance/textures/misc/texture-size.html', | 425 self.Fail('conformance/textures/misc/texture-size.html', |
| 424 ['chromeos', ('intel', 0xa011)], bug=375554) | 426 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 425 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 427 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 426 ['chromeos', ('intel', 0xa011)], bug=375554) | 428 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 427 self.Skip('conformance/uniforms/uniform-default-values.html', | 429 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 428 ['chromeos', ('intel', 0xa011)], bug=375554) | 430 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |