Chromium Code Reviews| 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 ['linux', 'intel'], bug=540543) # ANGLE bug 1277 | 213 ['linux', 'intel'], bug=540543) # ANGLE bug 1277 |
| 214 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 214 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 215 ['linux', 'intel'], bug=540543) # ANGLE bug 1276 | 215 ['linux', 'intel'], bug=540543) # ANGLE bug 1276 |
| 216 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', | 216 self.Fail('conformance/glsl/misc/shaders-with-varyings.html', |
| 217 ['linux', 'intel'], bug=540543) | 217 ['linux', 'intel'], bug=540543) |
| 218 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', | 218 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', |
| 219 ['linux', 'intel', 'opengl'], bug=1312) # ANGLE bug id | 219 ['linux', 'intel', 'opengl'], bug=1312) # ANGLE bug id |
| 220 self.Fail('deqp/data/gles2/shaders/linkage.html', | 220 self.Fail('deqp/data/gles2/shaders/linkage.html', |
| 221 ['linux', 'intel'], bug=540543) | 221 ['linux', 'intel'], bug=540543) |
| 222 self.Fail('deqp/data/gles2/shaders/preprocessor.html', | 222 self.Fail('deqp/data/gles2/shaders/preprocessor.html', |
| 223 ['linux', 'intel', 'opengl'], bug=1312) # ANGLE bug id | 223 ['linux', 'intel'], bug=1312) # ANGLE bug id. See also 598910 |
| 224 self.Fail('conformance/glsl/bugs/sampler-array-using-loop-index.html', | |
| 225 ['linux', 'intel', 'opengl'], bug=598924) | |
|
Ken Russell (switch to Gerrit)
2016/03/30 01:36:25
Is "opengl" strictly needed (or correct) here (and
Corentin Wallez
2016/03/30 01:46:56
I think it should be detect properly:
- The code
Ken Russell (switch to Gerrit)
2016/03/30 01:55:38
Maybe I'm misreading the logs but it looked to me
| |
| 224 | 226 |
| 225 # Android failures | 227 # Android failures |
| 226 self.Fail('deqp/data/gles2/shaders/constants.html', | 228 self.Fail('deqp/data/gles2/shaders/constants.html', |
| 227 ['android'], bug=478572) | 229 ['android'], bug=478572) |
| 228 self.Fail('deqp/data/gles2/shaders/conversions.html', | 230 self.Fail('deqp/data/gles2/shaders/conversions.html', |
| 229 ['android'], bug=478572) | 231 ['android'], bug=478572) |
| 230 self.Fail('deqp/data/gles2/shaders/declarations.html', | 232 self.Fail('deqp/data/gles2/shaders/declarations.html', |
| 231 ['android'], bug=478572) | 233 ['android'], bug=478572) |
| 232 self.Fail('deqp/data/gles2/shaders/linkage.html', | 234 self.Fail('deqp/data/gles2/shaders/linkage.html', |
| 233 ['android'], bug=478572) | 235 ['android'], bug=478572) |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 421 self.Fail('conformance/textures/misc/texture-npot.html', | 423 self.Fail('conformance/textures/misc/texture-npot.html', |
| 422 ['chromeos', ('intel', 0xa011)], bug=375554) | 424 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 423 self.Fail('conformance/textures/misc/texture-npot-video.html', | 425 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 424 ['chromeos', ('intel', 0xa011)], bug=375554) | 426 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 425 self.Fail('conformance/textures/misc/texture-size.html', | 427 self.Fail('conformance/textures/misc/texture-size.html', |
| 426 ['chromeos', ('intel', 0xa011)], bug=375554) | 428 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 427 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 429 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 428 ['chromeos', ('intel', 0xa011)], bug=375554) | 430 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 429 self.Skip('conformance/uniforms/uniform-default-values.html', | 431 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 430 ['chromeos', ('intel', 0xa011)], bug=375554) | 432 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |