| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import os | 4 import os |
| 5 | 5 |
| 6 from gpu_test_expectations import GpuTestExpectations | 6 from gpu_test_expectations import GpuTestExpectations |
| 7 | 7 |
| 8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
| 9 | 9 |
| 10 class WebGLConformanceExpectations(GpuTestExpectations): | 10 class WebGLConformanceExpectations(GpuTestExpectations): |
| (...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 self.Fail('conformance2/textures/canvas/*', ['mac'], bug=483282) | 644 self.Fail('conformance2/textures/canvas/*', ['mac'], bug=483282) |
| 645 self.Fail('conformance2/textures/video/*', ['mac'], bug=483282) | 645 self.Fail('conformance2/textures/video/*', ['mac'], bug=483282) |
| 646 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html', | 646 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html', |
| 647 ['mac'], bug=483282) | 647 ['mac'], bug=483282) |
| 648 self.Fail('conformance2/textures/misc/tex-storage-compressed-formats.html', | 648 self.Fail('conformance2/textures/misc/tex-storage-compressed-formats.html', |
| 649 ['mac'], bug=483282) | 649 ['mac'], bug=483282) |
| 650 self.Fail('conformance2/textures/misc/texture-npot.html', | 650 self.Fail('conformance2/textures/misc/texture-npot.html', |
| 651 ['mac'], bug=483282) | 651 ['mac'], bug=483282) |
| 652 | 652 |
| 653 # Linux only. | 653 # Linux only. |
| 654 self.Skip('deqp/data/gles3/shaders/arrays.html', | |
| 655 ['linux', 'amd'], bug=483282) | |
| 656 self.Skip('deqp/data/gles3/shaders/qualification_order.html', | |
| 657 ['linux', 'amd'], bug=483282) | |
| 658 self.Skip('deqp/functional/gles3/shaderswitch.html', | |
| 659 ['linux', 'nvidia'], bug=483282) | |
| 660 | |
| 661 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', | 654 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', |
| 662 ['linux'], bug=483282) | 655 ['linux'], bug=483282) |
| 663 self.Fail('conformance2/rendering/draw-buffers.html', | 656 self.Fail('conformance2/rendering/draw-buffers.html', |
| 664 ['linux'], bug=483282) | 657 ['linux'], bug=483282) |
| 665 self.Fail('conformance2/samplers/samplers.html', | 658 self.Fail('conformance2/samplers/samplers.html', |
| 666 ['linux'], bug=483282) | 659 ['linux'], bug=483282) |
| 660 # Linux NVIDIA only. |
| 661 self.Skip('deqp/functional/gles3/shaderswitch.html', |
| 662 ['linux', 'nvidia'], bug=483282) |
| 663 # Linux AMD only. |
| 664 # It looks like AMD shader compiler rejects many valid ES3 semantics. |
| 665 self.Skip('deqp/data/gles3/shaders/arrays.html', |
| 666 ['linux', 'amd'], bug=483282) |
| 667 self.Skip('deqp/data/gles3/shaders/constant_expressions.html', |
| 668 ['linux', 'amd'], bug=483282) |
| 669 self.Skip('deqp/data/gles3/shaders/constants.html', |
| 670 ['linux', 'amd'], bug=483282) |
| 671 self.Skip('deqp/data/gles3/shaders/conversions.html', |
| 672 ['linux', 'amd'], bug=483282) |
| 673 self.Skip('deqp/data/gles3/shaders/functions.html', |
| 674 ['linux', 'amd'], bug=483282) |
| 675 self.Skip('deqp/data/gles3/shaders/linkage.html', |
| 676 ['linux', 'amd'], bug=483282) |
| 677 self.Skip('deqp/data/gles3/shaders/preprocessor.html', |
| 678 ['linux', 'amd'], bug=483282) |
| 679 self.Skip('deqp/data/gles3/shaders/qualification_order.html', |
| 680 ['linux', 'amd'], bug=483282) |
| 681 self.Skip('deqp/framework/opengl/simplereference/referencecontext.html', |
| 682 ['linux', 'amd'], bug=483282) |
| 683 self.Skip('deqp/functional/gles3//attriblocation.html', |
| 684 ['linux', 'amd'], bug=483282) |
| 685 self.Skip('deqp/functional/gles3/booleanstatequery.html', |
| 686 ['linux', 'amd'], bug=483282) |
| OLD | NEW |