OLD | NEW |
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s | 4 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s |
5 | 5 |
6 # See the GpuTestExpectations class for documentation. | 6 # See the GpuTestExpectations class for documentation. |
7 | 7 |
8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): | 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): |
9 def __init__(self, conformance_path): | 9 def __init__(self, conformance_path): |
10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) | 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 # it's infeasible to suppress individual failures one by one. | 85 # it's infeasible to suppress individual failures one by one. |
86 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) | 86 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) |
87 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) | 87 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) |
88 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) | 88 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) |
89 | 89 |
90 # Win / Intel | 90 # Win / Intel |
91 self.Skip('conformance2/textures/misc/copy-texture-image.html', | 91 self.Skip('conformance2/textures/misc/copy-texture-image.html', |
92 ['win', 'intel'], bug=617449) | 92 ['win', 'intel'], bug=617449) |
93 self.Fail('conformance2/textures/video/tex-2d-rgb9_e5-rgb-half_float.html', | 93 self.Fail('conformance2/textures/video/tex-2d-rgb9_e5-rgb-half_float.html', |
94 ['win', 'intel'], bug=628395) | 94 ['win', 'intel'], bug=628395) |
| 95 # Seems to cause the harness to fail immediately afterward |
| 96 self.Skip('conformance2/textures/video/tex-2d-rgba16f-rgba-half_float.html', |
| 97 ['win', 'intel'], bug=648337) |
95 self.Fail('deqp/functional/gles3/shaderderivate_*', | 98 self.Fail('deqp/functional/gles3/shaderderivate_*', |
96 ['win', 'intel'], bug=483282) | 99 ['win', 'intel'], bug=483282) |
97 self.Fail('deqp/functional/gles3/shaderstruct.html', | 100 self.Fail('deqp/functional/gles3/shaderstruct.html', |
98 ['win', 'intel'], bug=483282) | 101 ['win', 'intel'], bug=483282) |
99 self.Flaky('deqp/functional/gles3/lifetime.html', | 102 self.Flaky('deqp/functional/gles3/lifetime.html', |
100 ['win', 'intel'], bug=620379) | 103 ['win', 'intel'], bug=620379) |
101 self.Fail('deqp/functional/gles3/texturespecification/' + | 104 self.Fail('deqp/functional/gles3/texturespecification/' + |
102 'teximage3d_depth.html', | 105 'teximage3d_depth.html', |
103 ['win', 'intel'], bug=614418) | 106 ['win', 'intel'], bug=614418) |
104 self.Skip('deqp/functional/gles3/texturespecification/' + | 107 self.Skip('deqp/functional/gles3/texturespecification/' + |
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 # self.Fail(page_name, | 818 # self.Fail(page_name, |
816 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 819 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
817 # self.Fail(page_name, | 820 # self.Fail(page_name, |
818 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 821 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
819 | 822 |
820 # Conflicts if between a generic os condition and a specific version | 823 # Conflicts if between a generic os condition and a specific version |
821 # self.Fail(page_name, | 824 # self.Fail(page_name, |
822 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 825 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
823 # self.Fail(page_name, | 826 # self.Fail(page_name, |
824 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 827 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |