| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 self.Fail('deqp/data/gles2/shaders/functions.html', | 97 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 98 bug=478572) | 98 bug=478572) |
| 99 self.Fail('conformance/extensions/ext-sRGB.html', | 99 self.Fail('conformance/extensions/ext-sRGB.html', |
| 100 bug=540900) | 100 bug=540900) |
| 101 | 101 |
| 102 # We need to add WebGL 1 check in command buffer that format/type from | 102 # We need to add WebGL 1 check in command buffer that format/type from |
| 103 # TexSubImage2D have to match the current texture's. | 103 # TexSubImage2D have to match the current texture's. |
| 104 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', | 104 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', |
| 105 bug=570453) | 105 bug=570453) |
| 106 | 106 |
| 107 self.Fail('conformance/extensions/oes-texture-half-float.html', |
| 108 bug=607283) |
| 109 |
| 107 # Fails on multiple platforms | 110 # Fails on multiple platforms |
| 108 | 111 |
| 109 # OpenGL / NVIDIA failures | 112 # OpenGL / NVIDIA failures |
| 110 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', | 113 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', |
| 111 ['win', 'linux', 'nvidia', 'opengl'], bug=1007) # angle bug ID | 114 ['win', 'linux', 'nvidia', 'opengl'], bug=1007) # angle bug ID |
| 112 | 115 |
| 113 # Win failures | 116 # Win failures |
| 114 self.Fail('conformance/extensions/oes-texture-half-float.html', | |
| 115 ['win'], bug=607283) | |
| 116 # Note that the following two tests pass with OpenGL. | 117 # Note that the following two tests pass with OpenGL. |
| 117 self.Fail('conformance/glsl/bugs/' + | 118 self.Fail('conformance/glsl/bugs/' + |
| 118 'pow-of-small-constant-in-user-defined-function.html', | 119 'pow-of-small-constant-in-user-defined-function.html', |
| 119 ['win'], bug=485641) | 120 ['win'], bug=485641) |
| 120 # Note that the following test seems to pass, but it may still be flaky. | 121 # Note that the following test seems to pass, but it may still be flaky. |
| 121 self.Fail('conformance/glsl/constructors/' + | 122 self.Fail('conformance/glsl/constructors/' + |
| 122 'glsl-construct-vec-mat-index.html', | 123 'glsl-construct-vec-mat-index.html', |
| 123 ['win'], bug=525188) | 124 ['win'], bug=525188) |
| 124 self.Flaky('deqp/data/gles2/shaders/constants.html', ['win'], bug=594922) | 125 self.Flaky('deqp/data/gles2/shaders/constants.html', ['win'], bug=594922) |
| 125 | 126 |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 self.Fail('conformance/textures/misc/texture-npot.html', | 466 self.Fail('conformance/textures/misc/texture-npot.html', |
| 466 ['chromeos', ('intel', 0xa011)], bug=375554) | 467 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 467 self.Fail('conformance/textures/misc/texture-npot-video.html', | 468 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 468 ['chromeos', ('intel', 0xa011)], bug=375554) | 469 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 469 self.Fail('conformance/textures/misc/texture-size.html', | 470 self.Fail('conformance/textures/misc/texture-size.html', |
| 470 ['chromeos', ('intel', 0xa011)], bug=375554) | 471 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 471 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 472 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 472 ['chromeos', ('intel', 0xa011)], bug=375554) | 473 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 473 self.Skip('conformance/uniforms/uniform-default-values.html', | 474 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 474 ['chromeos', ('intel', 0xa011)], bug=375554) | 475 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |