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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 | 327 |
328 self.Flaky('deqp/functional/gles3/vertexarrays/' + | 328 self.Flaky('deqp/functional/gles3/vertexarrays/' + |
329 'multiple_attributes.output.html', | 329 'multiple_attributes.output.html', |
330 ['mac', ('nvidia', 0xfe9)], bug=483282) | 330 ['mac', ('nvidia', 0xfe9)], bug=483282) |
331 | 331 |
332 # Mac AMD | 332 # Mac AMD |
333 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', | 333 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', |
334 ['mac', 'amd'], bug=643866) | 334 ['mac', 'amd'], bug=643866) |
335 self.Fail('conformance2/glsl3/bool-type-cast-bug-uint-ivec-uvec.html', | 335 self.Fail('conformance2/glsl3/bool-type-cast-bug-uint-ivec-uvec.html', |
336 ['mac', 'amd'], bug=643866) | 336 ['mac', 'amd'], bug=643866) |
| 337 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', |
| 338 ['mac', 'amd'], bug=483282) |
337 self.Fail('deqp/functional/gles3/shadercommonfunction.html', | 339 self.Fail('deqp/functional/gles3/shadercommonfunction.html', |
338 ['mac', 'amd'], bug=643866) | 340 ['mac', 'amd'], bug=643866) |
339 | 341 |
340 self.Fail('deqp/functional/gles3/multisample.html', | 342 self.Fail('deqp/functional/gles3/multisample.html', |
341 ['mac', 'amd'], bug=617290) | 343 ['mac', 'amd'], bug=617290) |
342 self.Fail('deqp/functional/gles3/pixelbufferobject.html', | 344 self.Fail('deqp/functional/gles3/pixelbufferobject.html', |
343 ['mac', 'amd'], bug=483282) | 345 ['mac', 'amd'], bug=483282) |
344 self.Fail('deqp/functional/gles3/primitiverestart/00.html', | 346 self.Fail('deqp/functional/gles3/primitiverestart/00.html', |
345 ['mac', 'amd'], bug=598930) | 347 ['mac', 'amd'], bug=598930) |
346 self.Fail('deqp/functional/gles3/primitiverestart/01.html', | 348 self.Fail('deqp/functional/gles3/primitiverestart/01.html', |
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 # self.Fail(page_name, | 810 # self.Fail(page_name, |
809 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 811 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
810 # self.Fail(page_name, | 812 # self.Fail(page_name, |
811 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 813 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
812 | 814 |
813 # Conflicts if between a generic os condition and a specific version | 815 # Conflicts if between a generic os condition and a specific version |
814 # self.Fail(page_name, | 816 # self.Fail(page_name, |
815 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 817 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
816 # self.Fail(page_name, | 818 # self.Fail(page_name, |
817 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 819 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |