| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 # Note that the following two tests pass with OpenGL. | 56 # Note that the following two tests pass with OpenGL. |
| 57 self.Fail('conformance/glsl/bugs/' + | 57 self.Fail('conformance/glsl/bugs/' + |
| 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', | |
| 67 ['win'], bug=588617) | |
| 68 self.Flaky('deqp/data/gles2/shaders/constants.html', ['win'], bug=594922) | 66 self.Flaky('deqp/data/gles2/shaders/constants.html', ['win'], bug=594922) |
| 69 | 67 |
| 70 # Win7 / Intel failures | 68 # Win7 / Intel failures |
| 71 self.Fail('conformance/textures/misc/' + | 69 self.Fail('conformance/textures/misc/' + |
| 72 'copy-tex-image-and-sub-image-2d.html', | 70 'copy-tex-image-and-sub-image-2d.html', |
| 73 ['win7', 'intel']) | 71 ['win7', 'intel']) |
| 74 | 72 |
| 75 # Win / AMD flakiness seen on new tryservers. | 73 # Win / AMD flakiness seen on new tryservers. |
| 76 # It's unfortunate that this suppression needs to be so broad, but | 74 # It's unfortunate that this suppression needs to be so broad, but |
| 77 # basically any test that uses readPixels is potentially flaky, and | 75 # basically any test that uses readPixels is potentially flaky, and |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 self.Fail('conformance/textures/misc/texture-npot.html', | 409 self.Fail('conformance/textures/misc/texture-npot.html', |
| 412 ['chromeos', ('intel', 0xa011)], bug=375554) | 410 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 413 self.Fail('conformance/textures/misc/texture-npot-video.html', | 411 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 414 ['chromeos', ('intel', 0xa011)], bug=375554) | 412 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 415 self.Fail('conformance/textures/misc/texture-size.html', | 413 self.Fail('conformance/textures/misc/texture-size.html', |
| 416 ['chromeos', ('intel', 0xa011)], bug=375554) | 414 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 417 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 415 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 418 ['chromeos', ('intel', 0xa011)], bug=375554) | 416 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 419 self.Skip('conformance/uniforms/uniform-default-values.html', | 417 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 420 ['chromeos', ('intel', 0xa011)], bug=375554) | 418 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |