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_test_expectations import GpuTestExpectations | 6 from 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/oes-standard-derivatives.html', | |
42 bug=5400916) | |
43 self.Fail('conformance/extensions/ext-frag-depth.html', | |
44 bug=5400916) | |
45 | 41 |
46 # Win failures | 42 # Win failures |
47 self.Fail('conformance/glsl/bugs/' + | 43 self.Fail('conformance/glsl/bugs/' + |
48 'pow-of-small-constant-in-user-defined-function.html', | 44 'pow-of-small-constant-in-user-defined-function.html', |
49 ['win'], bug=485641) | 45 ['win'], bug=485641) |
50 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', | 46 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', |
51 ['win'], bug=485642) | 47 ['win'], bug=485642) |
52 self.Fail('conformance/glsl/constructors/' + | 48 self.Fail('conformance/glsl/constructors/' + |
53 'glsl-construct-vec-mat-index.html', | 49 'glsl-construct-vec-mat-index.html', |
54 ['win'], bug=525188) | 50 ['win'], bug=525188) |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 477 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
482 ['chromeos', ('intel', 0xa011)], bug=375554) | 478 ['chromeos', ('intel', 0xa011)], bug=375554) |
483 self.Skip('conformance/uniforms/uniform-default-values.html', | 479 self.Skip('conformance/uniforms/uniform-default-values.html', |
484 ['chromeos', ('intel', 0xa011)], bug=375554) | 480 ['chromeos', ('intel', 0xa011)], bug=375554) |
485 | 481 |
486 # Flaky on Mac & Linux | 482 # Flaky on Mac & Linux |
487 self.Fail('conformance/textures/misc/texture-upload-size.html', | 483 self.Fail('conformance/textures/misc/texture-upload-size.html', |
488 ['mac'], bug=436493) | 484 ['mac'], bug=436493) |
489 self.Fail('conformance/textures/misc/texture-upload-size.html', | 485 self.Fail('conformance/textures/misc/texture-upload-size.html', |
490 ['linux'], bug=436493) | 486 ['linux'], bug=436493) |
OLD | NEW |