| 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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 ['linux', 'amd', 'intel'], bug=483282) | 526 ['linux', 'amd', 'intel'], bug=483282) |
| 527 self.Fail('deqp/data/gles3/shaders/linkage.html', | 527 self.Fail('deqp/data/gles3/shaders/linkage.html', |
| 528 ['linux', 'amd', 'intel'], bug=483282) | 528 ['linux', 'amd', 'intel'], bug=483282) |
| 529 | 529 |
| 530 # Linux with ANGLE only | 530 # Linux with ANGLE only |
| 531 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 531 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 532 ['linux', 'opengl'], bug=483282) | 532 ['linux', 'opengl'], bug=483282) |
| 533 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 533 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', |
| 534 ['linux', 'opengl'], bug=483282) | 534 ['linux', 'opengl'], bug=483282) |
| 535 | 535 |
| 536 # Linux without ANGLE only |
| 537 self.Flaky('conformance2/buffers/getBufferSubData.html', |
| 538 ['linux', 'no_angle'], bug=650123) |
| 539 |
| 536 # Linux NVIDIA | 540 # Linux NVIDIA |
| 537 # This test is flaky both with and without ANGLE. | 541 # This test is flaky both with and without ANGLE. |
| 538 self.Flaky('deqp/functional/gles3/texturespecification/' + | 542 self.Flaky('deqp/functional/gles3/texturespecification/' + |
| 539 'random_teximage2d_2d.html', | 543 'random_teximage2d_2d.html', |
| 540 ['linux', 'nvidia'], bug=618447) | 544 ['linux', 'nvidia'], bug=618447) |
| 541 | 545 |
| 542 # Linux Intel | 546 # Linux Intel |
| 543 self.Fail('deqp/functional/gles3/shaderderivate_dfdx.html', | 547 self.Fail('deqp/functional/gles3/shaderderivate_dfdx.html', |
| 544 ['linux', 'intel'], bug=618408) | 548 ['linux', 'intel'], bug=618408) |
| 545 self.Fail('deqp/functional/gles3/fbomultisample.2_samples.html', | 549 self.Fail('deqp/functional/gles3/fbomultisample.2_samples.html', |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 # self.Fail(page_name, | 888 # self.Fail(page_name, |
| 885 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 889 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 886 # self.Fail(page_name, | 890 # self.Fail(page_name, |
| 887 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 891 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 888 | 892 |
| 889 # Conflicts if between a generic os condition and a specific version | 893 # Conflicts if between a generic os condition and a specific version |
| 890 # self.Fail(page_name, | 894 # self.Fail(page_name, |
| 891 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 895 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 892 # self.Fail(page_name, | 896 # self.Fail(page_name, |
| 893 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 897 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |