| 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 330 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 331 self.Fail('conformance/glsl/misc/shader-uniform-packing-restrictions.html', | 331 self.Fail('conformance/glsl/misc/shader-uniform-packing-restrictions.html', |
| 332 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 332 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 333 self.Fail('conformance/glsl/misc/shader-varying-packing-restrictions.html', | 333 self.Fail('conformance/glsl/misc/shader-varying-packing-restrictions.html', |
| 334 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 334 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 335 self.Fail('conformance/glsl/misc/shader-with-256-character-define.html', | 335 self.Fail('conformance/glsl/misc/shader-with-256-character-define.html', |
| 336 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 336 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 337 self.Fail('conformance/glsl/misc/' + | 337 self.Fail('conformance/glsl/misc/' + |
| 338 'shader-with-256-character-identifier.frag.html', | 338 'shader-with-256-character-identifier.frag.html', |
| 339 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 339 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 340 self.Fail('conformance/glsl/misc/shader-with-257-character-define.html', |
| 341 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 340 | 342 |
| 341 # Nexus 9 | 343 # Nexus 9 |
| 342 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', | 344 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', |
| 343 ['android', ('nvidia', 'NVIDIA Tegra')]) | 345 ['android', ('nvidia', 'NVIDIA Tegra')]) |
| 344 | 346 |
| 345 # ======================== | 347 # ======================== |
| 346 # Conformance expectations | 348 # Conformance expectations |
| 347 # ======================== | 349 # ======================== |
| 348 # Fails on all platforms | 350 # Fails on all platforms |
| 349 self.Fail('deqp/data/gles2/shaders/functions.html', | 351 self.Fail('deqp/data/gles2/shaders/functions.html', |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 self.Fail('conformance/textures/misc/texture-npot.html', | 739 self.Fail('conformance/textures/misc/texture-npot.html', |
| 738 ['chromeos', ('intel', 0xa011)], bug=375554) | 740 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 739 self.Fail('conformance/textures/misc/texture-npot-video.html', | 741 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 740 ['chromeos', ('intel', 0xa011)], bug=375554) | 742 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 741 self.Fail('conformance/textures/misc/texture-size.html', | 743 self.Fail('conformance/textures/misc/texture-size.html', |
| 742 ['chromeos', ('intel', 0xa011)], bug=375554) | 744 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 743 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 745 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 744 ['chromeos', ('intel', 0xa011)], bug=375554) | 746 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 745 self.Skip('conformance/uniforms/uniform-default-values.html', | 747 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 746 ['chromeos', ('intel', 0xa011)], bug=375554) | 748 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |