| 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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 ('qualcomm', 'Adreno (TM) 420')], bug=499874) | 574 ('qualcomm', 'Adreno (TM) 420')], bug=499874) |
| 575 self.Fail('conformance/rendering/gl-scissor-test.html', | 575 self.Fail('conformance/rendering/gl-scissor-test.html', |
| 576 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 576 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
| 577 self.Fail('conformance/rendering/gl-viewport-test.html', | 577 self.Fail('conformance/rendering/gl-viewport-test.html', |
| 578 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 578 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 579 self.Fail('conformance/textures/misc/' + | 579 self.Fail('conformance/textures/misc/' + |
| 580 'copy-tex-image-and-sub-image-2d.html', | 580 'copy-tex-image-and-sub-image-2d.html', |
| 581 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 581 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
| 582 self.Fail('conformance/uniforms/uniform-samplers-test.html', | 582 self.Fail('conformance/uniforms/uniform-samplers-test.html', |
| 583 ['android', ('qualcomm', 'Adreno (TM) 430')], bug=663071) | 583 ['android', ('qualcomm', 'Adreno (TM) 430')], bug=663071) |
| 584 self.Fail('conformance/offscreencanvas/' + |
| 585 'context-attribute-preserve-drawing-buffer.html', |
| 586 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=693135) |
| 584 self.Fail('WebglExtension_EXT_sRGB', | 587 self.Fail('WebglExtension_EXT_sRGB', |
| 585 ['android', | 588 ['android', |
| 586 ('qualcomm', 'Adreno (TM) 420'), ('qualcomm', 'Adreno (TM) 430')]) | 589 ('qualcomm', 'Adreno (TM) 420'), ('qualcomm', 'Adreno (TM) 430')]) |
| 587 | 590 |
| 588 # Nexus 9 | 591 # Nexus 9 |
| 589 self.Fail('deqp/data/gles2/shaders/functions.html', | 592 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 590 ['android', 'nvidia'], bug=478572) | 593 ['android', 'nvidia'], bug=478572) |
| 591 self.Fail('conformance/glsl/bugs/multiplication-assignment.html', | 594 self.Fail('conformance/glsl/bugs/multiplication-assignment.html', |
| 592 ['android', 'nvidia'], bug=606096) | 595 ['android', 'nvidia'], bug=606096) |
| 593 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', | 596 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 self.Fail('conformance/textures/misc/texture-npot.html', | 684 self.Fail('conformance/textures/misc/texture-npot.html', |
| 682 ['chromeos', ('intel', 0xa011)], bug=375554) | 685 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 683 self.Fail('conformance/textures/misc/texture-npot-video.html', | 686 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 684 ['chromeos', ('intel', 0xa011)], bug=375554) | 687 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 685 self.Fail('conformance/textures/misc/texture-size.html', | 688 self.Fail('conformance/textures/misc/texture-size.html', |
| 686 ['chromeos', ('intel', 0xa011)], bug=375554) | 689 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 687 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 690 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 688 ['chromeos', ('intel', 0xa011)], bug=375554) | 691 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 689 self.Skip('conformance/uniforms/uniform-default-values.html', | 692 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 690 ['chromeos', ('intel', 0xa011)], bug=375554) | 693 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |