| 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 | 39 |
| 42 # Win failures | 40 # Win failures |
| 43 self.Fail('conformance/glsl/bugs/' + | 41 self.Fail('conformance/glsl/bugs/' + |
| 44 'pow-of-small-constant-in-user-defined-function.html', | 42 'pow-of-small-constant-in-user-defined-function.html', |
| 45 ['win'], bug=485641) | 43 ['win'], bug=485641) |
| 46 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', | 44 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', |
| 47 ['win'], bug=485642) | 45 ['win'], bug=485642) |
| 48 self.Fail('conformance/glsl/constructors/' + | 46 self.Fail('conformance/glsl/constructors/' + |
| 49 'glsl-construct-vec-mat-index.html', | 47 'glsl-construct-vec-mat-index.html', |
| 50 ['win'], bug=525188) | 48 ['win'], bug=525188) |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 464 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 467 ['chromeos', ('intel', 0xa011)], bug=375554) | 465 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 468 self.Skip('conformance/uniforms/uniform-default-values.html', | 466 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 469 ['chromeos', ('intel', 0xa011)], bug=375554) | 467 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 470 | 468 |
| 471 # Flaky on Mac & Linux | 469 # Flaky on Mac & Linux |
| 472 self.Fail('conformance/textures/misc/texture-upload-size.html', | 470 self.Fail('conformance/textures/misc/texture-upload-size.html', |
| 473 ['mac'], bug=436493) | 471 ['mac'], bug=436493) |
| 474 self.Fail('conformance/textures/misc/texture-upload-size.html', | 472 self.Fail('conformance/textures/misc/texture-upload-size.html', |
| 475 ['linux'], bug=436493) | 473 ['linux'], bug=436493) |
| OLD | NEW |