| 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 20 matching lines...) Expand all Loading... |
| 31 def SetExpectations(self): | 31 def SetExpectations(self): |
| 32 # Fails on all platforms | 32 # Fails on all platforms |
| 33 self.Fail('deqp/data/gles2/shaders/functions.html', | 33 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 34 bug=478572) | 34 bug=478572) |
| 35 self.Fail('deqp/data/gles2/shaders/preprocessor.html', | 35 self.Fail('deqp/data/gles2/shaders/preprocessor.html', |
| 36 bug=478572) | 36 bug=478572) |
| 37 self.Fail('deqp/data/gles2/shaders/scoping.html', | 37 self.Fail('deqp/data/gles2/shaders/scoping.html', |
| 38 bug=478572) | 38 bug=478572) |
| 39 self.Fail('conformance/extensions/ext-sRGB.html', | 39 self.Fail('conformance/extensions/ext-sRGB.html', |
| 40 bug=540900) | 40 bug=540900) |
| 41 self.Fail('conformance/extensions/webgl-draw-buffers.html', | |
| 42 bug=559359) | |
| 43 self.Fail('conformance/textures/misc/cube-incomplete-fbo.html', | 41 self.Fail('conformance/textures/misc/cube-incomplete-fbo.html', |
| 44 bug=559362) | 42 bug=559362) |
| 45 | 43 |
| 46 # Win failures | 44 # Win failures |
| 47 self.Fail('conformance/glsl/bugs/' + | 45 self.Fail('conformance/glsl/bugs/' + |
| 48 'pow-of-small-constant-in-user-defined-function.html', | 46 'pow-of-small-constant-in-user-defined-function.html', |
| 49 ['win'], bug=485641) | 47 ['win'], bug=485641) |
| 50 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', | 48 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', |
| 51 ['win'], bug=485642) | 49 ['win'], bug=485642) |
| 52 self.Fail('conformance/glsl/constructors/' + | 50 self.Fail('conformance/glsl/constructors/' + |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 self.Fail('conformance/textures/misc/texture-npot.html', | 479 self.Fail('conformance/textures/misc/texture-npot.html', |
| 482 ['chromeos', ('intel', 0xa011)], bug=375554) | 480 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 483 self.Fail('conformance/textures/misc/texture-npot-video.html', | 481 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 484 ['chromeos', ('intel', 0xa011)], bug=375554) | 482 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 485 self.Fail('conformance/textures/misc/texture-size.html', | 483 self.Fail('conformance/textures/misc/texture-size.html', |
| 486 ['chromeos', ('intel', 0xa011)], bug=375554) | 484 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 487 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 485 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 488 ['chromeos', ('intel', 0xa011)], bug=375554) | 486 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 489 self.Skip('conformance/uniforms/uniform-default-values.html', | 487 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 490 ['chromeos', ('intel', 0xa011)], bug=375554) | 488 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |