| 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_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.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 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 self.Fail('conformance/glsl/bugs/multiplication-assignment.html', | 649 self.Fail('conformance/glsl/bugs/multiplication-assignment.html', |
| 650 ['android', 'nvidia'], bug=606096) | 650 ['android', 'nvidia'], bug=606096) |
| 651 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', | 651 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', |
| 652 ['android', ('nvidia', 'NVIDIA Tegra')]) | 652 ['android', ('nvidia', 'NVIDIA Tegra')]) |
| 653 | 653 |
| 654 # Pixel C | 654 # Pixel C |
| 655 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', | 655 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', |
| 656 ['android', 'android-chromium', | 656 ['android', 'android-chromium', |
| 657 ('nvidia', 'NVIDIA Tegra')], bug=624621) | 657 ('nvidia', 'NVIDIA Tegra')], bug=624621) |
| 658 | 658 |
| 659 # NVIDIA Shield |
| 660 self.Flaky('conformance/context/' + |
| 661 'context-eviction-with-garbage-collection.html', |
| 662 ['android', ('nvidia', 'NVIDIA Tegra')], bug=701929) |
| 663 |
| 659 ############ | 664 ############ |
| 660 # ChromeOS # | 665 # ChromeOS # |
| 661 ############ | 666 ############ |
| 662 | 667 |
| 663 # ChromeOS: affecting all devices. | 668 # ChromeOS: affecting all devices. |
| 664 self.Fail('conformance/extensions/webgl-depth-texture.html', | 669 self.Fail('conformance/extensions/webgl-depth-texture.html', |
| 665 ['chromeos', 'no_passthrough'], bug=382651) | 670 ['chromeos', 'no_passthrough'], bug=382651) |
| 666 | 671 |
| 667 # ChromeOS: all Intel except for pinetrail (stumpy, parrot, peppy,...) | 672 # ChromeOS: all Intel except for pinetrail (stumpy, parrot, peppy,...) |
| 668 # We will just include pinetrail here for now as we don't want to list | 673 # We will just include pinetrail here for now as we don't want to list |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 self.Fail('conformance/textures/misc/texture-npot.html', | 744 self.Fail('conformance/textures/misc/texture-npot.html', |
| 740 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 745 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
| 741 self.Fail('conformance/textures/misc/texture-npot-video.html', | 746 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 742 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 747 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
| 743 self.Fail('conformance/textures/misc/texture-size.html', | 748 self.Fail('conformance/textures/misc/texture-size.html', |
| 744 ['chromeos', ('intel', 0xa011)], bug=375554) | 749 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 745 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 750 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 746 ['chromeos', ('intel', 0xa011)], bug=375554) | 751 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 747 self.Skip('conformance/uniforms/uniform-default-values.html', | 752 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 748 ['chromeos', ('intel', 0xa011)], bug=375554) | 753 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |