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 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
719 # The Mesa Intel driver has a scoping bug, see | 719 # The Mesa Intel driver has a scoping bug, see |
720 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 | 720 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 |
721 self.Fail('deqp/data/gles2/shaders/scoping.html', | 721 self.Fail('deqp/data/gles2/shaders/scoping.html', |
722 ['linux', 'intel'], bug=610800) | 722 ['linux', 'intel'], bug=610800) |
723 self.Fail('conformance/glsl/bugs/sampler-array-using-loop-index.html', | 723 self.Fail('conformance/glsl/bugs/sampler-array-using-loop-index.html', |
724 ['linux', 'intel', 'opengl'], bug=598924) | 724 ['linux', 'intel', 'opengl'], bug=598924) |
725 self.Skip('conformance/uniforms/gl-uniform-arrays.html', | 725 self.Skip('conformance/uniforms/gl-uniform-arrays.html', |
726 ['linux', 'debug', ('intel', 0x412)], bug=604140) | 726 ['linux', 'debug', ('intel', 0x412)], bug=604140) |
727 | 727 |
728 # Android failures | 728 # Android failures |
| 729 self.Fail('conformance/glsl/bugs/sequence-operator-evaluation-order.html', |
| 730 ['android'], bug=478572) |
729 self.Fail('deqp/data/gles2/shaders/constants.html', | 731 self.Fail('deqp/data/gles2/shaders/constants.html', |
730 ['android'], bug=478572) | 732 ['android'], bug=478572) |
731 self.Fail('deqp/data/gles2/shaders/conversions.html', | 733 self.Fail('deqp/data/gles2/shaders/conversions.html', |
732 ['android'], bug=478572) | 734 ['android'], bug=478572) |
733 self.Fail('deqp/data/gles2/shaders/declarations.html', | 735 self.Fail('deqp/data/gles2/shaders/declarations.html', |
734 ['android'], bug=478572) | 736 ['android'], bug=478572) |
735 self.Fail('deqp/data/gles2/shaders/linkage.html', | 737 self.Fail('deqp/data/gles2/shaders/linkage.html', |
736 ['android'], bug=478572) | 738 ['android'], bug=478572) |
737 self.Fail('conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html', | 739 self.Fail('conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html', |
738 ['android'], bug=586183) | 740 ['android'], bug=586183) |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
941 self.Fail('conformance/textures/misc/texture-npot.html', | 943 self.Fail('conformance/textures/misc/texture-npot.html', |
942 ['chromeos', ('intel', 0xa011)], bug=375554) | 944 ['chromeos', ('intel', 0xa011)], bug=375554) |
943 self.Fail('conformance/textures/misc/texture-npot-video.html', | 945 self.Fail('conformance/textures/misc/texture-npot-video.html', |
944 ['chromeos', ('intel', 0xa011)], bug=375554) | 946 ['chromeos', ('intel', 0xa011)], bug=375554) |
945 self.Fail('conformance/textures/misc/texture-size.html', | 947 self.Fail('conformance/textures/misc/texture-size.html', |
946 ['chromeos', ('intel', 0xa011)], bug=375554) | 948 ['chromeos', ('intel', 0xa011)], bug=375554) |
947 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 949 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
948 ['chromeos', ('intel', 0xa011)], bug=375554) | 950 ['chromeos', ('intel', 0xa011)], bug=375554) |
949 self.Skip('conformance/uniforms/uniform-default-values.html', | 951 self.Skip('conformance/uniforms/uniform-default-values.html', |
950 ['chromeos', ('intel', 0xa011)], bug=375554) | 952 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |