| 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_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'pow-of-small-constant-in-user-defined-function.html', | 58 'pow-of-small-constant-in-user-defined-function.html', |
| 59 ['win'], bug=485641) | 59 ['win'], bug=485641) |
| 60 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', | 60 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', |
| 61 ['win'], bug=485642) | 61 ['win'], bug=485642) |
| 62 # Note that the following test seems to pass, but it may still be flaky. | 62 # Note that the following test seems to pass, but it may still be flaky. |
| 63 self.Fail('conformance/glsl/constructors/' + | 63 self.Fail('conformance/glsl/constructors/' + |
| 64 'glsl-construct-vec-mat-index.html', | 64 'glsl-construct-vec-mat-index.html', |
| 65 ['win'], bug=525188) | 65 ['win'], bug=525188) |
| 66 self.Flaky('conformance/extensions/ext-disjoint-timer-query.html', | 66 self.Flaky('conformance/extensions/ext-disjoint-timer-query.html', |
| 67 ['win'], bug=588617) | 67 ['win'], bug=588617) |
| 68 self.Flaky('deqp/data/gles2/shaders/constants.html', ['win'], bug=594922) |
| 68 | 69 |
| 69 # Win7 / Intel failures | 70 # Win7 / Intel failures |
| 70 self.Fail('conformance/textures/misc/' + | 71 self.Fail('conformance/textures/misc/' + |
| 71 'copy-tex-image-and-sub-image-2d.html', | 72 'copy-tex-image-and-sub-image-2d.html', |
| 72 ['win7', 'intel']) | 73 ['win7', 'intel']) |
| 73 | 74 |
| 74 # Win / AMD flakiness seen on new tryservers. | 75 # Win / AMD flakiness seen on new tryservers. |
| 75 # It's unfortunate that this suppression needs to be so broad, but | 76 # It's unfortunate that this suppression needs to be so broad, but |
| 76 # basically any test that uses readPixels is potentially flaky, and | 77 # basically any test that uses readPixels is potentially flaky, and |
| 77 # it's infeasible to suppress individual failures one by one. | 78 # it's infeasible to suppress individual failures one by one. |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 self.Fail('conformance/textures/misc/texture-npot.html', | 411 self.Fail('conformance/textures/misc/texture-npot.html', |
| 411 ['chromeos', ('intel', 0xa011)], bug=375554) | 412 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 412 self.Fail('conformance/textures/misc/texture-npot-video.html', | 413 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 413 ['chromeos', ('intel', 0xa011)], bug=375554) | 414 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 414 self.Fail('conformance/textures/misc/texture-size.html', | 415 self.Fail('conformance/textures/misc/texture-size.html', |
| 415 ['chromeos', ('intel', 0xa011)], bug=375554) | 416 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 416 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 417 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 417 ['chromeos', ('intel', 0xa011)], bug=375554) | 418 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 418 self.Skip('conformance/uniforms/uniform-default-values.html', | 419 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 419 ['chromeos', ('intel', 0xa011)], bug=375554) | 420 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |