| 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 27 matching lines...) Expand all Loading... |
| 38 bug=478572) | 38 bug=478572) |
| 39 self.Fail('conformance/misc/expando-loss.html', | 39 self.Fail('conformance/misc/expando-loss.html', |
| 40 bug=485634) | 40 bug=485634) |
| 41 | 41 |
| 42 # Win failures | 42 # Win failures |
| 43 self.Fail('conformance/glsl/bugs/' + | 43 self.Fail('conformance/glsl/bugs/' + |
| 44 'pow-of-small-constant-in-user-defined-function.html', | 44 'pow-of-small-constant-in-user-defined-function.html', |
| 45 ['win'], bug=485641) | 45 ['win'], bug=485641) |
| 46 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', | 46 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', |
| 47 ['win'], bug=485642) | 47 ['win'], bug=485642) |
| 48 self.Flaky('conformance/glsl/constructors/' + | 48 self.Fail('conformance/glsl/constructors/' + |
| 49 'glsl-construct-vec-mat-index.html', | 49 'glsl-construct-vec-mat-index.html', |
| 50 ['win'], bug=525188) | 50 ['win'], bug=525188) |
| 51 | 51 |
| 52 # Win7 / Intel failures | 52 # Win7 / Intel failures |
| 53 self.Fail('conformance/rendering/gl-scissor-test.html', | 53 self.Fail('conformance/rendering/gl-scissor-test.html', |
| 54 ['win7', 'intel'], bug=314997) | 54 ['win7', 'intel'], bug=314997) |
| 55 self.Fail('conformance/context/premultiplyalpha-test.html', | 55 self.Fail('conformance/context/premultiplyalpha-test.html', |
| 56 ['win7', 'intel']) | 56 ['win7', 'intel']) |
| 57 self.Fail('conformance/textures/misc/copy-tex-image-and-sub-image-2d.html', | 57 self.Fail('conformance/textures/misc/copy-tex-image-and-sub-image-2d.html', |
| 58 ['win7', 'intel']) | 58 ['win7', 'intel']) |
| 59 self.Fail('conformance/rendering/gl-viewport-test.html', | 59 self.Fail('conformance/rendering/gl-viewport-test.html', |
| 60 ['win7', 'intel'], bug=372511) | 60 ['win7', 'intel'], bug=372511) |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 ['linux', 'amd'], bug=483282) | 656 ['linux', 'amd'], bug=483282) |
| 657 self.Skip('deqp/functional/gles3/shaderswitch.html', | 657 self.Skip('deqp/functional/gles3/shaderswitch.html', |
| 658 ['linux', 'nvidia'], bug=483282) | 658 ['linux', 'nvidia'], bug=483282) |
| 659 | 659 |
| 660 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', | 660 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', |
| 661 ['linux'], bug=483282) | 661 ['linux'], bug=483282) |
| 662 self.Fail('conformance2/rendering/draw-buffers.html', | 662 self.Fail('conformance2/rendering/draw-buffers.html', |
| 663 ['linux'], bug=483282) | 663 ['linux'], bug=483282) |
| 664 self.Fail('conformance2/samplers/samplers.html', | 664 self.Fail('conformance2/samplers/samplers.html', |
| 665 ['linux'], bug=483282) | 665 ['linux'], bug=483282) |
| OLD | NEW |