| 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 self.Fail('deqp/functional/gles3/clipping.html', | 587 self.Fail('deqp/functional/gles3/clipping.html', |
| 588 ['mac', 'amd'], bug=483282) | 588 ['mac', 'amd'], bug=483282) |
| 589 | 589 |
| 590 # Mac Intel | 590 # Mac Intel |
| 591 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 591 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 592 ['mac', 'intel'], bug=483282) | 592 ['mac', 'intel'], bug=483282) |
| 593 | 593 |
| 594 # Linux only. | 594 # Linux only. |
| 595 self.Fail('deqp/functional/gles3/fbostatequery.html', | 595 self.Fail('deqp/functional/gles3/fbostatequery.html', |
| 596 ['linux'], bug=483282) | 596 ['linux'], bug=483282) |
| 597 self.Flaky('deqp/functional/gles3/negativeshaderapi.html', | |
| 598 ['linux'], bug=483282) | |
| 599 self.Skip('deqp/functional/gles3/shaderswitch.html', | 597 self.Skip('deqp/functional/gles3/shaderswitch.html', |
| 600 ['linux'], bug=483282) | 598 ['linux'], bug=483282) |
| 601 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', | 599 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', |
| 602 ['linux'], bug=483282) | 600 ['linux'], bug=483282) |
| 603 self.Fail('conformance2/rendering/draw-buffers.html', | 601 self.Fail('conformance2/rendering/draw-buffers.html', |
| 604 ['linux'], bug=483282) | 602 ['linux'], bug=483282) |
| 605 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 603 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 606 ['linux'], bug=483282) | 604 ['linux'], bug=483282) |
| 605 # We want to mark this Flaky for all of Linux however we currently skip |
| 606 # all the tests on Intel. Tag this with AMD and Nvidia to avoid an |
| 607 # expectation conflict that would make this test run on Intel. |
| 608 self.Flaky('deqp/functional/gles3/negativeshaderapi.html', |
| 609 ['linux', 'amd', 'nvidia'], bug=483282) |
| 607 | 610 |
| 608 # Linux AMD only. | 611 # Linux AMD only. |
| 609 # It looks like AMD shader compiler rejects many valid ES3 semantics. | 612 # It looks like AMD shader compiler rejects many valid ES3 semantics. |
| 610 self.Skip('deqp/data/gles3/shaders/arrays.html', | 613 self.Skip('deqp/data/gles3/shaders/arrays.html', |
| 611 ['linux', 'amd'], bug=483282) | 614 ['linux', 'amd'], bug=483282) |
| 612 self.Skip('deqp/data/gles3/shaders/qualification_order.html', | 615 self.Skip('deqp/data/gles3/shaders/qualification_order.html', |
| 613 ['linux', 'amd'], bug=483282) | 616 ['linux', 'amd'], bug=483282) |
| 614 self.Skip('deqp/functional/gles3/texturestatequery.html', | 617 self.Skip('deqp/functional/gles3/texturestatequery.html', |
| 615 ['linux', 'amd'], bug=483282) | 618 ['linux', 'amd'], bug=483282) |
| 616 self.Fail('conformance2/buffers/buffer-type-restrictions.html', | 619 self.Fail('conformance2/buffers/buffer-type-restrictions.html', |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 # self.Fail(page_name, | 702 # self.Fail(page_name, |
| 700 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 703 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 701 # self.Fail(page_name, | 704 # self.Fail(page_name, |
| 702 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 705 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 703 | 706 |
| 704 # Conflicts if between a generic os condition and a specific version | 707 # Conflicts if between a generic os condition and a specific version |
| 705 # self.Fail(page_name, | 708 # self.Fail(page_name, |
| 706 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 709 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 707 # self.Fail(page_name, | 710 # self.Fail(page_name, |
| 708 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 711 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |