| 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 583 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
| 584 self.Fail('conformance/uniforms/uniform-samplers-test.html', | 584 self.Fail('conformance/uniforms/uniform-samplers-test.html', |
| 585 ['android', ('qualcomm', 'Adreno (TM) 430')], bug=663071) | 585 ['android', ('qualcomm', 'Adreno (TM) 430')], bug=663071) |
| 586 self.Fail('WebglExtension_EXT_sRGB', | 586 self.Fail('WebglExtension_EXT_sRGB', |
| 587 ['android', | 587 ['android', |
| 588 ('qualcomm', 'Adreno (TM) 420'), ('qualcomm', 'Adreno (TM) 430')]) | 588 ('qualcomm', 'Adreno (TM) 420'), ('qualcomm', 'Adreno (TM) 430')]) |
| 589 | 589 |
| 590 # Nexus 9 | 590 # Nexus 9 |
| 591 self.Fail('deqp/data/gles2/shaders/functions.html', | 591 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 592 ['android', 'nvidia'], bug=478572) | 592 ['android', 'nvidia'], bug=478572) |
| 593 self.Skip('conformance/extensions/oes-texture-float-with-video.html', | |
| 594 ['android', 'nvidia'], bug=499555) # flaky | |
| 595 self.Fail('conformance/glsl/bugs/multiplication-assignment.html', | 593 self.Fail('conformance/glsl/bugs/multiplication-assignment.html', |
| 596 ['android', 'nvidia'], bug=606096) | 594 ['android', 'nvidia'], bug=606096) |
| 597 self.Fail('conformance/glsl/constructors/glsl-construct-mat2.html', | |
| 598 ['android', 'nvidia'], bug=606096) | |
| 599 self.Fail('conformance/glsl/constructors/glsl-construct-mat3.html', | |
| 600 ['android', 'nvidia'], bug=606096) | |
| 601 self.Fail('conformance/glsl/constructors/glsl-construct-mat4.html', | |
| 602 ['android', 'nvidia'], bug=606096) | |
| 603 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', | 595 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', |
| 604 ['android', ('nvidia', 'NVIDIA Tegra')]) | 596 ['android', ('nvidia', 'NVIDIA Tegra')]) |
| 605 self.Fail('deqp/data/gles2/shaders/conversions.html', | |
| 606 ['android', ('nvidia', 'NVIDIA Tegra')], bug=478572) | |
| 607 | 597 |
| 608 # Pixel C | 598 # Pixel C |
| 609 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', | 599 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', |
| 610 ['android', 'android-chromium', | 600 ['android', 'android-chromium', |
| 611 ('nvidia', 'NVIDIA Tegra')], bug=624621) | 601 ('nvidia', 'NVIDIA Tegra')], bug=624621) |
| 612 | 602 |
| 613 ############ | 603 ############ |
| 614 # ChromeOS # | 604 # ChromeOS # |
| 615 ############ | 605 ############ |
| 616 | 606 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 self.Fail('conformance/textures/misc/texture-npot.html', | 683 self.Fail('conformance/textures/misc/texture-npot.html', |
| 694 ['chromeos', ('intel', 0xa011)], bug=375554) | 684 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 695 self.Fail('conformance/textures/misc/texture-npot-video.html', | 685 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 696 ['chromeos', ('intel', 0xa011)], bug=375554) | 686 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 697 self.Fail('conformance/textures/misc/texture-size.html', | 687 self.Fail('conformance/textures/misc/texture-size.html', |
| 698 ['chromeos', ('intel', 0xa011)], bug=375554) | 688 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 699 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 689 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 700 ['chromeos', ('intel', 0xa011)], bug=375554) | 690 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 701 self.Skip('conformance/uniforms/uniform-default-values.html', | 691 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 702 ['chromeos', ('intel', 0xa011)], bug=375554) | 692 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |