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 18 matching lines...) Expand all Loading... |
29 'expectation does not exist: ' + full_path) | 29 'expectation does not exist: ' + full_path) |
30 | 30 |
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/misc/expando-loss.html', | |
40 bug=485634) | |
41 self.Fail('conformance/buffers/buffer-data-array-buffer.html', | 39 self.Fail('conformance/buffers/buffer-data-array-buffer.html', |
42 bug=535077) | 40 bug=535077) |
43 | 41 |
44 # Win failures | 42 # Win failures |
45 self.Fail('conformance/glsl/bugs/' + | 43 self.Fail('conformance/glsl/bugs/' + |
46 'pow-of-small-constant-in-user-defined-function.html', | 44 'pow-of-small-constant-in-user-defined-function.html', |
47 ['win'], bug=485641) | 45 ['win'], bug=485641) |
48 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', | 46 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', |
49 ['win'], bug=485642) | 47 ['win'], bug=485642) |
50 self.Fail('conformance/glsl/constructors/' + | 48 self.Fail('conformance/glsl/constructors/' + |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 466 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
469 ['chromeos', ('intel', 0xa011)], bug=375554) | 467 ['chromeos', ('intel', 0xa011)], bug=375554) |
470 self.Skip('conformance/uniforms/uniform-default-values.html', | 468 self.Skip('conformance/uniforms/uniform-default-values.html', |
471 ['chromeos', ('intel', 0xa011)], bug=375554) | 469 ['chromeos', ('intel', 0xa011)], bug=375554) |
472 | 470 |
473 # Flaky on Mac & Linux | 471 # Flaky on Mac & Linux |
474 self.Fail('conformance/textures/misc/texture-upload-size.html', | 472 self.Fail('conformance/textures/misc/texture-upload-size.html', |
475 ['mac'], bug=436493) | 473 ['mac'], bug=436493) |
476 self.Fail('conformance/textures/misc/texture-upload-size.html', | 474 self.Fail('conformance/textures/misc/texture-upload-size.html', |
477 ['linux'], bug=436493) | 475 ['linux'], bug=436493) |
OLD | NEW |