| 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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 ['linux', 'opengl'], bug=483282) | 502 ['linux', 'opengl'], bug=483282) |
| 503 self.Fail('conformance/textures/webgl_canvas/' + | 503 self.Fail('conformance/textures/webgl_canvas/' + |
| 504 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', | 504 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', |
| 505 ['linux', 'opengl'], bug=483282) | 505 ['linux', 'opengl'], bug=483282) |
| 506 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 506 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 507 ['linux', 'opengl'], bug=483282) | 507 ['linux', 'opengl'], bug=483282) |
| 508 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 508 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', |
| 509 ['linux', 'opengl'], bug=483282) | 509 ['linux', 'opengl'], bug=483282) |
| 510 | 510 |
| 511 # Linux NVIDIA only. | 511 # Linux NVIDIA only. |
| 512 self.Flaky('conformance2/misc/getextension-while-pbo-bound-stability.html', | |
| 513 ['linux', 'nvidia'], bug=483282) | |
| 514 | 512 |
| 515 # Linux NVIDIA with ANGLE only | 513 # Linux NVIDIA with ANGLE only |
| 516 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', | 514 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', |
| 517 ['linux', 'nvidia', 'opengl'], bug=483282) | 515 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 518 self.Fail('deqp/functional/gles3/buffercopy.html', | 516 self.Fail('deqp/functional/gles3/buffercopy.html', |
| 519 ['linux', 'nvidia', 'opengl'], bug=483282) | 517 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 520 self.Fail('deqp/functional/gles3/bufferobjectquery.html', | 518 self.Fail('deqp/functional/gles3/bufferobjectquery.html', |
| 521 ['linux', 'nvidia', 'opengl'], bug=483282) | 519 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 522 self.Fail('conformance2/transform_feedback/transform_feedback.html', | 520 self.Fail('conformance2/transform_feedback/transform_feedback.html', |
| 523 ['linux', 'nvidia', 'opengl'], bug=483282) | 521 ['linux', 'nvidia', 'opengl'], bug=483282) |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 870 # self.Fail(page_name, | 868 # self.Fail(page_name, |
| 871 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 869 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 872 # self.Fail(page_name, | 870 # self.Fail(page_name, |
| 873 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 871 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 874 | 872 |
| 875 # Conflicts if between a generic os condition and a specific version | 873 # Conflicts if between a generic os condition and a specific version |
| 876 # self.Fail(page_name, | 874 # self.Fail(page_name, |
| 877 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 875 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 878 # self.Fail(page_name, | 876 # self.Fail(page_name, |
| 879 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 877 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |