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