| 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 self.Fail('deqp/data/gles3/shaders/functions.html', | 391 self.Fail('deqp/data/gles3/shaders/functions.html', |
| 392 ['linux'], bug=483282) | 392 ['linux'], bug=483282) |
| 393 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', | 393 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', |
| 394 ['linux'], bug=483282) | 394 ['linux'], bug=483282) |
| 395 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', | 395 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', |
| 396 ['linux'], bug=483282) | 396 ['linux'], bug=483282) |
| 397 self.Fail('conformance2/rendering/draw-buffers.html', | 397 self.Fail('conformance2/rendering/draw-buffers.html', |
| 398 ['linux'], bug=483282) | 398 ['linux'], bug=483282) |
| 399 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_00.html', | 399 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_00.html', |
| 400 ['linux'], bug=606021) | 400 ['linux'], bug=606021) |
| 401 self.Flaky('deqp/functional/gles3/texturefiltering/cube_sizes_03.html', |
| 402 ['linux'], bug=606021) |
| 401 | 403 |
| 402 self.Skip('deqp/data/gles3/shaders/qualification_order.html', | 404 self.Skip('deqp/data/gles3/shaders/qualification_order.html', |
| 403 ['linux', 'amd', 'intel'], bug=483282) | 405 ['linux', 'amd', 'intel'], bug=483282) |
| 404 self.Fail('deqp/functional/gles3/clipping.html', | 406 self.Fail('deqp/functional/gles3/clipping.html', |
| 405 ['linux', 'amd', 'intel'], bug=483282) | 407 ['linux', 'amd', 'intel'], bug=483282) |
| 406 | 408 |
| 407 # Linux NVIDIA only. | 409 # Linux NVIDIA only. |
| 408 self.Fail('conformance2/glsl3/array-complex-indexing.html', | 410 self.Fail('conformance2/glsl3/array-complex-indexing.html', |
| 409 ['linux', 'nvidia'], bug=606498) | 411 ['linux', 'nvidia'], bug=606498) |
| 410 self.Fail('deqp/functional/gles3/vertexarrays.html', | 412 self.Fail('deqp/functional/gles3/vertexarrays.html', |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 # self.Fail(page_name, | 526 # self.Fail(page_name, |
| 525 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 527 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 526 # self.Fail(page_name, | 528 # self.Fail(page_name, |
| 527 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 529 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 528 | 530 |
| 529 # Conflicts if between a generic os condition and a specific version | 531 # Conflicts if between a generic os condition and a specific version |
| 530 # self.Fail(page_name, | 532 # self.Fail(page_name, |
| 531 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 533 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 532 # self.Fail(page_name, | 534 # self.Fail(page_name, |
| 533 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 535 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |