| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 48     self.Fail('deqp/functional/gles3/framebufferblit/conversion_28.html', | 48     self.Fail('deqp/functional/gles3/framebufferblit/conversion_28.html', | 
| 49         ['mac'], bug=654187) | 49         ['mac'], bug=654187) | 
| 50     self.Fail('deqp/functional/gles3/framebufferblit/conversion_30.html', | 50     self.Fail('deqp/functional/gles3/framebufferblit/conversion_30.html', | 
| 51         ['mac'], bug=654187) | 51         ['mac'], bug=654187) | 
| 52     self.Fail('deqp/functional/gles3/framebufferblit/conversion_31.html', | 52     self.Fail('deqp/functional/gles3/framebufferblit/conversion_31.html', | 
| 53         ['mac'], bug=654187) | 53         ['mac'], bug=654187) | 
| 54     self.Fail('deqp/functional/gles3/framebufferblit/conversion_33.html', | 54     self.Fail('deqp/functional/gles3/framebufferblit/conversion_33.html', | 
| 55         ['mac'], bug=654187) | 55         ['mac'], bug=654187) | 
| 56 | 56 | 
| 57     # All platforms. | 57     # All platforms. | 
| 58     self.Fail('conformance2/sync/sync-webgl-specific.html', bug=483282) |  | 
| 59     self.Fail('conformance2/textures/misc/tex-image-with-bad-args.html', | 58     self.Fail('conformance2/textures/misc/tex-image-with-bad-args.html', | 
| 60         bug=656889) | 59         bug=656889) | 
| 61     self.Fail('conformance2/context/methods-2.html', bug=616554) | 60     self.Fail('conformance2/context/methods-2.html', bug=616554) | 
| 62     self.Flaky('conformance2/query/occlusion-query.html', bug=603168) | 61     self.Flaky('conformance2/query/occlusion-query.html', bug=603168) | 
| 63 | 62 | 
| 64     # Windows only. | 63     # Windows only. | 
| 65     # We are awesome! | 64     # We are awesome! | 
| 66 | 65 | 
| 67     # Win / NVidia | 66     # Win / NVidia | 
| 68     self.Flaky('deqp/functional/gles3/fbomultisample*', | 67     self.Flaky('deqp/functional/gles3/fbomultisample*', | 
| (...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 869     # self.Fail(page_name, | 868     # self.Fail(page_name, | 
| 870     #     ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 869     #     ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 
| 871     # self.Fail(page_name, | 870     # self.Fail(page_name, | 
| 872     #     ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 871     #     ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 
| 873 | 872 | 
| 874     # Conflicts if between a generic os condition and a specific version | 873     # Conflicts if between a generic os condition and a specific version | 
| 875     # self.Fail(page_name, | 874     # self.Fail(page_name, | 
| 876     #     ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 875     #     ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 
| 877     # self.Fail(page_name, | 876     # self.Fail(page_name, | 
| 878     #     ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 877     #     ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 
| OLD | NEW | 
|---|