| 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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 ['linux', 'amd'], bug=483282) | 675 ['linux', 'amd'], bug=483282) |
| 676 self.Fail('deqp/functional/gles3/texturespecification/' + | 676 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 677 'texstorage3d_format_3d_03.html', | 677 'texstorage3d_format_3d_03.html', |
| 678 ['linux', 'amd'], bug=483282) | 678 ['linux', 'amd'], bug=483282) |
| 679 self.Fail('deqp/functional/gles3/texturespecification/' + | 679 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 680 'texstorage3d_format_depth_stencil.html', | 680 'texstorage3d_format_depth_stencil.html', |
| 681 ['linux', 'amd'], bug=483282) | 681 ['linux', 'amd'], bug=483282) |
| 682 self.Fail('deqp/functional/gles3/texturespecification/' + | 682 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 683 'texstorage3d_format_size.html', | 683 'texstorage3d_format_size.html', |
| 684 ['linux', 'amd'], bug=483282) | 684 ['linux', 'amd'], bug=483282) |
| 685 self.Fail('deqp/functional/gles3/uniformbuffers/single_struct_array.html', |
| 686 ['linux', 'amd'], bug=483282) |
| 687 self.Fail('deqp/functional/gles3/uniformbuffers/single_nested_struct.html', |
| 688 ['linux', 'amd'], bug=483282) |
| 689 self.Fail('deqp/functional/gles3/uniformbuffers/' + |
| 690 'single_nested_struct_array.html', |
| 691 ['linux', 'amd'], bug=483282) |
| 692 self.Fail('deqp/functional/gles3/uniformbuffers/multi_basic_types.html', |
| 693 ['linux', 'amd'], bug=483282) |
| 694 self.Fail('deqp/functional/gles3/uniformbuffers/multi_nested_struct.html', |
| 695 ['linux', 'amd'], bug=483282) |
| 685 | 696 |
| 686 # Conflicting expectations to test that the | 697 # Conflicting expectations to test that the |
| 687 # "Expectations Have No collisions" unittest works. | 698 # "Expectations Have No collisions" unittest works. |
| 688 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' | 699 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' |
| 689 | 700 |
| 690 # Conflict when all conditions match | 701 # Conflict when all conditions match |
| 691 # self.Fail(page_name, | 702 # self.Fail(page_name, |
| 692 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 703 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 693 # self.Fail(page_name, | 704 # self.Fail(page_name, |
| 694 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 705 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 # self.Fail(page_name, | 751 # self.Fail(page_name, |
| 741 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 752 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 742 # self.Fail(page_name, | 753 # self.Fail(page_name, |
| 743 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 754 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 744 | 755 |
| 745 # Conflicts if between a generic os condition and a specific version | 756 # Conflicts if between a generic os condition and a specific version |
| 746 # self.Fail(page_name, | 757 # self.Fail(page_name, |
| 747 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 758 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 748 # self.Fail(page_name, | 759 # self.Fail(page_name, |
| 749 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 760 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |