| 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): | 9 def __init__(self, conformance_path): |
| 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) | 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-2d' + | 119 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-2d' + |
| 120 '-with-webgl-canvas-rgb5_a1-rgba-unsigned_short_5_5_5_1.html', | 120 '-with-webgl-canvas-rgb5_a1-rgba-unsigned_short_5_5_5_1.html', |
| 121 ['win'], bug=483282) | 121 ['win'], bug=483282) |
| 122 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-2d' + | 122 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-2d' + |
| 123 '-with-webgl-canvas-rgba4-rgba-unsigned_byte.html', | 123 '-with-webgl-canvas-rgba4-rgba-unsigned_byte.html', |
| 124 ['win'], bug=483282) | 124 ['win'], bug=483282) |
| 125 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-2d' + | 125 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-2d' + |
| 126 '-with-webgl-canvas-rgba4-rgba-unsigned_short_4_4_4_4.html', | 126 '-with-webgl-canvas-rgba4-rgba-unsigned_short_4_4_4_4.html', |
| 127 ['win'], bug=483282) | 127 ['win'], bug=483282) |
| 128 | 128 |
| 129 self.Flaky('deqp/functional/gles3/buffercopy.html', ['win'], bug=587601) |
| 130 |
| 129 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) | 131 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) |
| 130 self.Skip('deqp/functional/gles3/texturestatequery.html', | 132 self.Skip('deqp/functional/gles3/texturestatequery.html', |
| 131 ['win'], bug=483282) | 133 ['win'], bug=483282) |
| 132 self.Fail('deqp/functional/gles3/shaderstruct.html', | 134 self.Fail('deqp/functional/gles3/shaderstruct.html', |
| 133 ['win'], bug=483282) | 135 ['win'], bug=483282) |
| 134 self.Fail('conformance2/glsl3/array-in-complex-expression.html', | 136 self.Fail('conformance2/glsl3/array-in-complex-expression.html', |
| 135 ['win'], bug=483282) | 137 ['win'], bug=483282) |
| 136 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', | 138 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', |
| 137 ['win'], bug=483282) | 139 ['win'], bug=483282) |
| 138 self.Skip('conformance2/reading/read-pixels-pack-parameters.html', | 140 self.Skip('conformance2/reading/read-pixels-pack-parameters.html', |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 # self.Fail(page_name, | 400 # self.Fail(page_name, |
| 399 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 401 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 400 # self.Fail(page_name, | 402 # self.Fail(page_name, |
| 401 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 403 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 402 | 404 |
| 403 # Conflicts if between a generic os condition and a specific version | 405 # Conflicts if between a generic os condition and a specific version |
| 404 # self.Fail(page_name, | 406 # self.Fail(page_name, |
| 405 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 407 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 406 # self.Fail(page_name, | 408 # self.Fail(page_name, |
| 407 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 409 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |