| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', | 327 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', |
| 328 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 328 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 329 self.Fail('conformance/glsl/misc/shader-struct-scope.html', | 329 self.Fail('conformance/glsl/misc/shader-struct-scope.html', |
| 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/' + |
| 338 'shader-with-256-character-identifier.frag.html', |
| 339 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 337 | 340 |
| 338 # Nexus 9 | 341 # Nexus 9 |
| 339 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', | 342 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', |
| 340 ['android', ('nvidia', 'NVIDIA Tegra')]) | 343 ['android', ('nvidia', 'NVIDIA Tegra')]) |
| 341 | 344 |
| 342 # ======================== | 345 # ======================== |
| 343 # Conformance expectations | 346 # Conformance expectations |
| 344 # ======================== | 347 # ======================== |
| 345 # Fails on all platforms | 348 # Fails on all platforms |
| 346 self.Fail('deqp/data/gles2/shaders/functions.html', | 349 self.Fail('deqp/data/gles2/shaders/functions.html', |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 self.Fail('conformance/textures/misc/texture-npot.html', | 737 self.Fail('conformance/textures/misc/texture-npot.html', |
| 735 ['chromeos', ('intel', 0xa011)], bug=375554) | 738 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 736 self.Fail('conformance/textures/misc/texture-npot-video.html', | 739 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 737 ['chromeos', ('intel', 0xa011)], bug=375554) | 740 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 738 self.Fail('conformance/textures/misc/texture-size.html', | 741 self.Fail('conformance/textures/misc/texture-size.html', |
| 739 ['chromeos', ('intel', 0xa011)], bug=375554) | 742 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 740 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 743 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 741 ['chromeos', ('intel', 0xa011)], bug=375554) | 744 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 742 self.Skip('conformance/uniforms/uniform-default-values.html', | 745 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 743 ['chromeos', ('intel', 0xa011)], bug=375554) | 746 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |