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