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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 ['win'], bug=607283) | 388 ['win'], bug=607283) |
389 # Note that the following two tests pass with OpenGL. | 389 # Note that the following two tests pass with OpenGL. |
390 self.Fail('conformance/glsl/bugs/' + | 390 self.Fail('conformance/glsl/bugs/' + |
391 'pow-of-small-constant-in-user-defined-function.html', | 391 'pow-of-small-constant-in-user-defined-function.html', |
392 ['win'], bug=485641) | 392 ['win'], bug=485641) |
393 # Note that the following test seems to pass, but it may still be flaky. | 393 # Note that the following test seems to pass, but it may still be flaky. |
394 self.Fail('conformance/glsl/constructors/' + | 394 self.Fail('conformance/glsl/constructors/' + |
395 'glsl-construct-vec-mat-index.html', | 395 'glsl-construct-vec-mat-index.html', |
396 ['win'], bug=525188) | 396 ['win'], bug=525188) |
397 self.Flaky('deqp/data/gles2/shaders/constants.html', ['win'], bug=594922) | 397 self.Flaky('deqp/data/gles2/shaders/constants.html', ['win'], bug=594922) |
| 398 self.Fail('conformance/rendering/point-specific-shader-variables.html', |
| 399 ['win'], bug=616335) |
398 | 400 |
399 # Win7 / Intel failures | 401 # Win7 / Intel failures |
400 self.Fail('conformance/textures/misc/' + | 402 self.Fail('conformance/textures/misc/' + |
401 'copy-tex-image-and-sub-image-2d.html', | 403 'copy-tex-image-and-sub-image-2d.html', |
402 ['win7', 'intel']) | 404 ['win7', 'intel']) |
403 | 405 |
404 # Win / AMD flakiness seen on new tryservers. | 406 # Win / AMD flakiness seen on new tryservers. |
405 # It's unfortunate that this suppression needs to be so broad, but | 407 # It's unfortunate that this suppression needs to be so broad, but |
406 # basically any test that uses readPixels is potentially flaky, and | 408 # basically any test that uses readPixels is potentially flaky, and |
407 # it's infeasible to suppress individual failures one by one. | 409 # it's infeasible to suppress individual failures one by one. |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 self.Fail('conformance/textures/misc/texture-npot.html', | 756 self.Fail('conformance/textures/misc/texture-npot.html', |
755 ['chromeos', ('intel', 0xa011)], bug=375554) | 757 ['chromeos', ('intel', 0xa011)], bug=375554) |
756 self.Fail('conformance/textures/misc/texture-npot-video.html', | 758 self.Fail('conformance/textures/misc/texture-npot-video.html', |
757 ['chromeos', ('intel', 0xa011)], bug=375554) | 759 ['chromeos', ('intel', 0xa011)], bug=375554) |
758 self.Fail('conformance/textures/misc/texture-size.html', | 760 self.Fail('conformance/textures/misc/texture-size.html', |
759 ['chromeos', ('intel', 0xa011)], bug=375554) | 761 ['chromeos', ('intel', 0xa011)], bug=375554) |
760 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 762 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
761 ['chromeos', ('intel', 0xa011)], bug=375554) | 763 ['chromeos', ('intel', 0xa011)], bug=375554) |
762 self.Skip('conformance/uniforms/uniform-default-values.html', | 764 self.Skip('conformance/uniforms/uniform-default-values.html', |
763 ['chromeos', ('intel', 0xa011)], bug=375554) | 765 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |