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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 | 71 |
72 # Win / AMD D3D9 failures | 72 # Win / AMD D3D9 failures |
73 self.Fail('conformance/textures/misc/texparameter-test.html', | 73 self.Fail('conformance/textures/misc/texparameter-test.html', |
74 ['win', 'amd', 'd3d9'], bug=839) # angle bug ID | 74 ['win', 'amd', 'd3d9'], bug=839) # angle bug ID |
75 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 75 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
76 ['win', 'amd', 'd3d9'], bug=475095) | 76 ['win', 'amd', 'd3d9'], bug=475095) |
77 self.Fail('conformance/rendering/more-than-65536-indices.html', | 77 self.Fail('conformance/rendering/more-than-65536-indices.html', |
78 ['win', 'amd', 'd3d9'], bug=475095) | 78 ['win', 'amd', 'd3d9'], bug=475095) |
79 | 79 |
80 # Win / D3D9 failures | 80 # Win / D3D9 failures |
81 # Skipping these tests because they're causing assertion failures. | 81 # Skipping these two tests because they're causing assertion failures. |
82 self.Skip('conformance/extensions/oes-texture-float-with-canvas.html', | 82 self.Skip('conformance/extensions/oes-texture-float-with-canvas.html', |
83 ['win', 'd3d9'], bug=896) # angle bug ID | 83 ['win', 'd3d9'], bug=896) # angle bug ID |
84 self.Skip('conformance/extensions/oes-texture-half-float-with-canvas.html', | 84 self.Skip('conformance/extensions/oes-texture-half-float-with-canvas.html', |
85 ['win', 'd3d9'], bug=896) # angle bug ID | 85 ['win', 'd3d9'], bug=896) # angle bug ID |
| 86 self.Fail('conformance/glsl/bugs/floor-div-cos-should-not-truncate.html', |
| 87 ['win', 'd3d9'], bug=1179) # angle bug ID |
86 | 88 |
87 # WIN / D3D9 / Intel failures | 89 # WIN / D3D9 / Intel failures |
88 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', | 90 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', |
89 ['win', 'intel', 'd3d9'], bug=540538) | 91 ['win', 'intel', 'd3d9'], bug=540538) |
90 | 92 |
91 # Win / OpenGL failures | 93 # Win / OpenGL failures |
92 self.Fail('conformance/context/'+ | 94 self.Fail('conformance/context/'+ |
93 'context-attributes-alpha-depth-stencil-antialias.html', | 95 'context-attributes-alpha-depth-stencil-antialias.html', |
94 ['win', 'opengl'], bug=1007) # angle bug ID | 96 ['win', 'opengl'], bug=1007) # angle bug ID |
95 self.Fail('deqp/data/gles2/shaders/conditionals.html', | 97 self.Fail('deqp/data/gles2/shaders/conditionals.html', |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 self.Fail('conformance/textures/misc/texture-npot.html', | 483 self.Fail('conformance/textures/misc/texture-npot.html', |
482 ['chromeos', ('intel', 0xa011)], bug=375554) | 484 ['chromeos', ('intel', 0xa011)], bug=375554) |
483 self.Fail('conformance/textures/misc/texture-npot-video.html', | 485 self.Fail('conformance/textures/misc/texture-npot-video.html', |
484 ['chromeos', ('intel', 0xa011)], bug=375554) | 486 ['chromeos', ('intel', 0xa011)], bug=375554) |
485 self.Fail('conformance/textures/misc/texture-size.html', | 487 self.Fail('conformance/textures/misc/texture-size.html', |
486 ['chromeos', ('intel', 0xa011)], bug=375554) | 488 ['chromeos', ('intel', 0xa011)], bug=375554) |
487 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 489 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
488 ['chromeos', ('intel', 0xa011)], bug=375554) | 490 ['chromeos', ('intel', 0xa011)], bug=375554) |
489 self.Skip('conformance/uniforms/uniform-default-values.html', | 491 self.Skip('conformance/uniforms/uniform-default-values.html', |
490 ['chromeos', ('intel', 0xa011)], bug=375554) | 492 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |