| 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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 | 658 |
| 659 # Pixel C | 659 # Pixel C |
| 660 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', | 660 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', |
| 661 ['android', 'android-chromium', | 661 ['android', 'android-chromium', |
| 662 ('nvidia', 'NVIDIA Tegra')], bug=624621) | 662 ('nvidia', 'NVIDIA Tegra')], bug=624621) |
| 663 | 663 |
| 664 # NVIDIA Shield | 664 # NVIDIA Shield |
| 665 self.Flaky('conformance/context/' + | 665 self.Flaky('conformance/context/' + |
| 666 'context-eviction-with-garbage-collection.html', | 666 'context-eviction-with-garbage-collection.html', |
| 667 ['android', ('nvidia', 'NVIDIA Tegra')], bug=701929) | 667 ['android', ('nvidia', 'NVIDIA Tegra')], bug=701929) |
| 668 self.Flaky('conformance/glsl/misc/glsl-long-variable-names.html', |
| 669 ['android', ('nvidia', 'NVIDIA Tegra')], bug=701929) |
| 670 self.Flaky('conformance/textures/image_bitmap_from_video/' + |
| 671 'tex-2d-rgb-rgb-unsigned_byte.html', |
| 672 ['android', ('nvidia', 'NVIDIA Tegra')], bug=701929) |
| 668 | 673 |
| 669 ############ | 674 ############ |
| 670 # ChromeOS # | 675 # ChromeOS # |
| 671 ############ | 676 ############ |
| 672 | 677 |
| 673 # ChromeOS: affecting all devices. | 678 # ChromeOS: affecting all devices. |
| 674 self.Fail('conformance/extensions/webgl-depth-texture.html', | 679 self.Fail('conformance/extensions/webgl-depth-texture.html', |
| 675 ['chromeos', 'no_passthrough'], bug=382651) | 680 ['chromeos', 'no_passthrough'], bug=382651) |
| 676 | 681 |
| 677 # ChromeOS: all Intel except for pinetrail (stumpy, parrot, peppy,...) | 682 # ChromeOS: all Intel except for pinetrail (stumpy, parrot, peppy,...) |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 749 self.Fail('conformance/textures/misc/texture-npot.html', | 754 self.Fail('conformance/textures/misc/texture-npot.html', |
| 750 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 755 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
| 751 self.Fail('conformance/textures/misc/texture-npot-video.html', | 756 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 752 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 757 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
| 753 self.Fail('conformance/textures/misc/texture-size.html', | 758 self.Fail('conformance/textures/misc/texture-size.html', |
| 754 ['chromeos', ('intel', 0xa011)], bug=375554) | 759 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 755 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 760 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 756 ['chromeos', ('intel', 0xa011)], bug=375554) | 761 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 757 self.Skip('conformance/uniforms/uniform-default-values.html', | 762 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 758 ['chromeos', ('intel', 0xa011)], bug=375554) | 763 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |