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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 self.Fail('conformance/textures/misc/texture-corner-case-videos.html', | 48 self.Fail('conformance/textures/misc/texture-corner-case-videos.html', |
49 bug=701060) | 49 bug=701060) |
50 | 50 |
51 self.Fail('conformance2/rendering/depth-stencil-feedback-loop.html', | 51 self.Fail('conformance2/rendering/depth-stencil-feedback-loop.html', |
52 bug=660844) # WebGL 2.0.1 | 52 bug=660844) # WebGL 2.0.1 |
53 self.Fail('conformance2/rendering/rendering-sampling-feedback-loop.html', | 53 self.Fail('conformance2/rendering/rendering-sampling-feedback-loop.html', |
54 bug=660844) # WebGL 2.0.1 | 54 bug=660844) # WebGL 2.0.1 |
55 self.Fail('conformance2/textures/misc/' + | 55 self.Fail('conformance2/textures/misc/' + |
56 'integer-cubemap-specification-order-bug.html', | 56 'integer-cubemap-specification-order-bug.html', |
57 bug=483282) # owner:cwallez, test might be buggy | 57 bug=483282) # owner:cwallez, test might be buggy |
| 58 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', |
| 59 bug=625738) |
58 | 60 |
59 # Windows only. | 61 # Windows only. |
60 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', | 62 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', |
61 ['win', 'd3d11'], bug=644740) | 63 ['win', 'd3d11'], bug=644740) |
62 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848) | 64 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848) |
63 | 65 |
64 # Win / NVidia | 66 # Win / NVidia |
65 self.Flaky('deqp/functional/gles3/fbomultisample*', | 67 self.Flaky('deqp/functional/gles3/fbomultisample*', |
66 ['win', 'nvidia', 'd3d11'], bug=631317) | 68 ['win', 'nvidia', 'd3d11'], bug=631317) |
67 self.Fail('conformance2/rendering/' + | 69 self.Fail('conformance2/rendering/' + |
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1094 # self.Fail(page_name, | 1096 # self.Fail(page_name, |
1095 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1097 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
1096 # self.Fail(page_name, | 1098 # self.Fail(page_name, |
1097 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1099 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
1098 | 1100 |
1099 # Conflicts if between a generic os condition and a specific version | 1101 # Conflicts if between a generic os condition and a specific version |
1100 # self.Fail(page_name, | 1102 # self.Fail(page_name, |
1101 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1103 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
1102 # self.Fail(page_name, | 1104 # self.Fail(page_name, |
1103 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1105 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |