| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import os | 4 import os |
| 5 | 5 |
| 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations |
| 7 | 7 |
| 8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
| 9 | 9 |
| 10 class WebGLConformanceExpectations(GpuTestExpectations): | 10 class WebGLConformanceExpectations(GpuTestExpectations): |
| 11 def __init__(self, conformance_path, url_prefixes=None): | 11 def __init__(self, conformance_path, url_prefixes=None, is_asan=False): |
| 12 self.conformance_path = conformance_path | 12 self.conformance_path = conformance_path |
| 13 super(WebGLConformanceExpectations, self).__init__( | 13 super(WebGLConformanceExpectations, self).__init__( |
| 14 url_prefixes=url_prefixes) | 14 url_prefixes=url_prefixes, is_asan=is_asan) |
| 15 | 15 |
| 16 def Fail(self, pattern, condition=None, bug=None): | 16 def Fail(self, pattern, condition=None, bug=None): |
| 17 self.CheckPatternIsValid(pattern) | 17 self.CheckPatternIsValid(pattern) |
| 18 GpuTestExpectations.Fail(self, pattern, condition, bug) | 18 GpuTestExpectations.Fail(self, pattern, condition, bug) |
| 19 | 19 |
| 20 def Flaky(self, pattern, condition=None, bug=None, max_num_retries=2): | 20 def Flaky(self, pattern, condition=None, bug=None, max_num_retries=2): |
| 21 self.CheckPatternIsValid(pattern) | 21 self.CheckPatternIsValid(pattern) |
| 22 GpuTestExpectations.Flaky(self, pattern, condition, bug=bug, | 22 GpuTestExpectations.Flaky(self, pattern, condition, bug=bug, |
| 23 max_num_retries=max_num_retries) | 23 max_num_retries=max_num_retries) |
| 24 | 24 |
| (...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 871 self.Fail('conformance/textures/misc/texture-npot.html', | 871 self.Fail('conformance/textures/misc/texture-npot.html', |
| 872 ['chromeos', ('intel', 0xa011)], bug=375554) | 872 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 873 self.Fail('conformance/textures/misc/texture-npot-video.html', | 873 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 874 ['chromeos', ('intel', 0xa011)], bug=375554) | 874 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 875 self.Fail('conformance/textures/misc/texture-size.html', | 875 self.Fail('conformance/textures/misc/texture-size.html', |
| 876 ['chromeos', ('intel', 0xa011)], bug=375554) | 876 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 877 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 877 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 878 ['chromeos', ('intel', 0xa011)], bug=375554) | 878 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 879 self.Skip('conformance/uniforms/uniform-default-values.html', | 879 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 880 ['chromeos', ('intel', 0xa011)], bug=375554) | 880 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |