| 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, is_asan=False): | 9 def __init__(self, conformance_path, url_prefixes=None, is_asan=False): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 'random_teximage2d_2d.html', | 712 'random_teximage2d_2d.html', |
| 713 ['linux', 'amd', 'intel'], bug=618447) | 713 ['linux', 'amd', 'intel'], bug=618447) |
| 714 self.Fail('conformance2/rendering/clipping-wide-points.html', | 714 self.Fail('conformance2/rendering/clipping-wide-points.html', |
| 715 ['linux', 'amd', 'intel'], bug=662644) # WebGL 2.0.1 | 715 ['linux', 'amd', 'intel'], bug=662644) # WebGL 2.0.1 |
| 716 | 716 |
| 717 # Linux NVIDIA | 717 # Linux NVIDIA |
| 718 # Explicitly specifying GT 610 to avoid conflict with Quadro P400 rule | 718 # Explicitly specifying GT 610 to avoid conflict with Quadro P400 rule |
| 719 self.Flaky('deqp/functional/gles3/multisample.html', | 719 self.Flaky('deqp/functional/gles3/multisample.html', |
| 720 ['linux', ('nvidia', 0x104a)], bug=714207) | 720 ['linux', ('nvidia', 0x104a)], bug=714207) |
| 721 | 721 |
| 722 # Any of these tests become flaky if they follow | |
| 723 # conformance2/samplers/samplers.html and if virtualized GL | |
| 724 # contexts are being used. | |
| 725 self.Flaky('conformance2/textures/canvas_sub_rectangle/*', | |
| 726 ['linux', 'nvidia'], bug=694359) | |
| 727 | |
| 728 # This test is flaky both with and without ANGLE. | 722 # This test is flaky both with and without ANGLE. |
| 729 self.Flaky('deqp/functional/gles3/texturespecification/' + | 723 self.Flaky('deqp/functional/gles3/texturespecification/' + |
| 730 'random_teximage2d_2d.html', | 724 'random_teximage2d_2d.html', |
| 731 ['linux', 'nvidia'], bug=618447) | 725 ['linux', 'nvidia'], bug=618447) |
| 732 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', | 726 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', |
| 733 ['linux', 'nvidia'], bug=672380) | 727 ['linux', 'nvidia'], bug=672380) |
| 734 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', | 728 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', |
| 735 ['linux', 'nvidia'], bug=709351) | 729 ['linux', 'nvidia'], bug=709351) |
| 736 self.Fail('conformance2/textures/image_bitmap_from_canvas/' + | 730 self.Fail('conformance2/textures/image_bitmap_from_canvas/' + |
| 737 'tex-3d-srgb8_alpha8-rgba-unsigned_byte.html', | 731 'tex-3d-srgb8_alpha8-rgba-unsigned_byte.html', |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1156 # self.Fail(page_name, | 1150 # self.Fail(page_name, |
| 1157 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1151 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1158 # self.Fail(page_name, | 1152 # self.Fail(page_name, |
| 1159 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1153 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1160 | 1154 |
| 1161 # Conflicts if between a generic os condition and a specific version | 1155 # Conflicts if between a generic os condition and a specific version |
| 1162 # self.Fail(page_name, | 1156 # self.Fail(page_name, |
| 1163 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1157 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1164 # self.Fail(page_name, | 1158 # self.Fail(page_name, |
| 1165 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1159 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |