| 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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 self.Fail('conformance/glsl/constructors/glsl-construct-mat3.html', | 603 self.Fail('conformance/glsl/constructors/glsl-construct-mat3.html', |
| 604 ['android', 'nvidia'], bug=606096) | 604 ['android', 'nvidia'], bug=606096) |
| 605 self.Fail('conformance/glsl/constructors/glsl-construct-mat4.html', | 605 self.Fail('conformance/glsl/constructors/glsl-construct-mat4.html', |
| 606 ['android', 'nvidia'], bug=606096) | 606 ['android', 'nvidia'], bug=606096) |
| 607 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', | 607 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', |
| 608 ['android', ('nvidia', 'NVIDIA Tegra')]) | 608 ['android', ('nvidia', 'NVIDIA Tegra')]) |
| 609 self.Fail('deqp/data/gles2/shaders/conversions.html', | 609 self.Fail('deqp/data/gles2/shaders/conversions.html', |
| 610 ['android', ('nvidia', 'NVIDIA Tegra')], bug=478572) | 610 ['android', ('nvidia', 'NVIDIA Tegra')], bug=478572) |
| 611 | 611 |
| 612 # Pixel C | 612 # Pixel C |
| 613 self.Flaky('conformance/textures/video/' + | |
| 614 'tex-2d-rgb-rgb-unsigned_byte.html', | |
| 615 ['android', 'android-chromium', | |
| 616 ('nvidia', 'NVIDIA Tegra')], bug=624621) | |
| 617 self.Flaky('conformance/textures/video/' + | |
| 618 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', | |
| 619 ['android', 'android-chromium', | |
| 620 ('nvidia', 'NVIDIA Tegra')], bug=624621) | |
| 621 self.Flaky('conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html', | |
| 622 ['android', 'android-chromium', | |
| 623 ('nvidia', 'NVIDIA Tegra')], bug=624621) | |
| 624 self.Flaky('conformance/textures/video/' + | |
| 625 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', | |
| 626 ['android', 'android-chromium', | |
| 627 ('nvidia', 'NVIDIA Tegra')], bug=624621) | |
| 628 self.Flaky('conformance/textures/video/' + | |
| 629 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', | |
| 630 ['android', 'android-chromium', | |
| 631 ('nvidia', 'NVIDIA Tegra')], bug=624621) | |
| 632 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', | 613 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', |
| 633 ['android', 'android-chromium', | 614 ['android', 'android-chromium', |
| 634 ('nvidia', 'NVIDIA Tegra')], bug=624621) | 615 ('nvidia', 'NVIDIA Tegra')], bug=624621) |
| 635 | 616 |
| 636 ############ | 617 ############ |
| 637 # ChromeOS # | 618 # ChromeOS # |
| 638 ############ | 619 ############ |
| 639 | 620 |
| 640 # ChromeOS: affecting all devices. | 621 # ChromeOS: affecting all devices. |
| 641 self.Fail('conformance/extensions/webgl-depth-texture.html', | 622 self.Fail('conformance/extensions/webgl-depth-texture.html', |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 self.Fail('conformance/textures/misc/texture-npot.html', | 697 self.Fail('conformance/textures/misc/texture-npot.html', |
| 717 ['chromeos', ('intel', 0xa011)], bug=375554) | 698 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 718 self.Fail('conformance/textures/misc/texture-npot-video.html', | 699 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 719 ['chromeos', ('intel', 0xa011)], bug=375554) | 700 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 720 self.Fail('conformance/textures/misc/texture-size.html', | 701 self.Fail('conformance/textures/misc/texture-size.html', |
| 721 ['chromeos', ('intel', 0xa011)], bug=375554) | 702 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 722 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 703 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 723 ['chromeos', ('intel', 0xa011)], bug=375554) | 704 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 724 self.Skip('conformance/uniforms/uniform-default-values.html', | 705 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 725 ['chromeos', ('intel', 0xa011)], bug=375554) | 706 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |