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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 ['mac', 'amd'], bug=483282) | 152 ['mac', 'amd'], bug=483282) |
153 | 153 |
154 self.Fail('conformance2/rendering/' + | 154 self.Fail('conformance2/rendering/' + |
155 'framebuffer-completeness-unaffected.html', | 155 'framebuffer-completeness-unaffected.html', |
156 ['mac'], bug=630800) | 156 ['mac'], bug=630800) |
157 self.Fail('deqp/functional/gles3/fbocompleteness.html', | 157 self.Fail('deqp/functional/gles3/fbocompleteness.html', |
158 ['mac'], bug=630800) | 158 ['mac'], bug=630800) |
159 # self.Fail('deqp/functional/gles3/fbocompleteness.html', | 159 # self.Fail('deqp/functional/gles3/fbocompleteness.html', |
160 # ['mac', ('nvidia', 0xfe9)], bug=616562) | 160 # ['mac', ('nvidia', 0xfe9)], bug=616562) |
161 | 161 |
| 162 self.Fail('conformance2/rendering/blitframebuffer-filter-srgb.html', |
| 163 ['mac'], bug=634525) |
| 164 |
162 self.Fail('deqp/data/gles3/shaders/linkage.html', | 165 self.Fail('deqp/data/gles3/shaders/linkage.html', |
163 ['mac'], bug=641129) | 166 ['mac'], bug=641129) |
164 | 167 |
165 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 168 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
166 ['mac'], bug=618464) | 169 ['mac'], bug=618464) |
167 | 170 |
168 # This is due to "centroid out" / "in" mismatch. | 171 # This is due to "centroid out" / "in" mismatch. |
169 self.Fail('deqp/data/gles3/shaders/qualification_order.html', | 172 self.Fail('deqp/data/gles3/shaders/qualification_order.html', |
170 ['mac'], bug=483282) | 173 ['mac'], bug=483282) |
171 | 174 |
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 # self.Fail(page_name, | 811 # self.Fail(page_name, |
809 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 812 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
810 # self.Fail(page_name, | 813 # self.Fail(page_name, |
811 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 814 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
812 | 815 |
813 # Conflicts if between a generic os condition and a specific version | 816 # Conflicts if between a generic os condition and a specific version |
814 # self.Fail(page_name, | 817 # self.Fail(page_name, |
815 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 818 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
816 # self.Fail(page_name, | 819 # self.Fail(page_name, |
817 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 820 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |