| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 129 |
| 130 self.Fail('conformance2/glsl3/array-in-complex-expression.html', | 130 self.Fail('conformance2/glsl3/array-in-complex-expression.html', |
| 131 ['win'], bug=483282) | 131 ['win'], bug=483282) |
| 132 | 132 |
| 133 self.Fail('deqp/functional/gles3/transformfeedback/*.html', | 133 self.Fail('deqp/functional/gles3/transformfeedback/*.html', |
| 134 ['win'], bug=626068) | 134 ['win'], bug=626068) |
| 135 | 135 |
| 136 self.Fail('deqp/functional/gles3/fboinvalidate/whole.html', | 136 self.Fail('deqp/functional/gles3/fboinvalidate/whole.html', |
| 137 ['win'], bug=624506) | 137 ['win'], bug=624506) |
| 138 | 138 |
| 139 self.Fail('deqp/functional/gles3/textureformat/compressed_cube.html', | |
| 140 ['win'], bug=614573) | |
| 141 | |
| 142 # ANGLE bug id | 139 # ANGLE bug id |
| 143 self.Fail('deqp/functional/gles3/fbomultisample*', | 140 self.Fail('deqp/functional/gles3/fbomultisample*', |
| 144 ['win'], bug=1246) | 141 ['win'], bug=1246) |
| 145 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html', | 142 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html', |
| 146 ['win'], bug=1246) | 143 ['win'], bug=1246) |
| 147 | 144 |
| 148 # Windows 8 only. | 145 # Windows 8 only. |
| 149 | 146 |
| 150 self.Flaky('deqp/functional/gles3/buffercopy.html', ['win8'], bug=587601) | 147 self.Flaky('deqp/functional/gles3/buffercopy.html', ['win8'], bug=587601) |
| 151 | 148 |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 # self.Fail(page_name, | 948 # self.Fail(page_name, |
| 952 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 949 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 953 # self.Fail(page_name, | 950 # self.Fail(page_name, |
| 954 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 951 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 955 | 952 |
| 956 # Conflicts if between a generic os condition and a specific version | 953 # Conflicts if between a generic os condition and a specific version |
| 957 # self.Fail(page_name, | 954 # self.Fail(page_name, |
| 958 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 955 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 959 # self.Fail(page_name, | 956 # self.Fail(page_name, |
| 960 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 957 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |