| 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 18 matching lines...) Expand all Loading... |
| 29 'expectation does not exist: ' + full_path) | 29 'expectation does not exist: ' + full_path) |
| 30 | 30 |
| 31 def SetExpectations(self): | 31 def SetExpectations(self): |
| 32 # Fails on all platforms | 32 # Fails on all platforms |
| 33 self.Fail('deqp/data/gles2/shaders/functions.html', | 33 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 34 bug=478572) | 34 bug=478572) |
| 35 self.Fail('deqp/data/gles2/shaders/scoping.html', | 35 self.Fail('deqp/data/gles2/shaders/scoping.html', |
| 36 bug=478572) | 36 bug=478572) |
| 37 self.Fail('conformance/extensions/ext-sRGB.html', | 37 self.Fail('conformance/extensions/ext-sRGB.html', |
| 38 bug=540900) | 38 bug=540900) |
| 39 # We need to add WebGL 1 check in command buffer that format/type from |
| 40 # TexSubImage2D have to match the current texture's. |
| 41 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', |
| 42 bug=570453) |
| 39 | 43 |
| 40 # Win failures | 44 # Win failures |
| 41 # Note that the following two tests pass with OpenGL. | 45 # Note that the following two tests pass with OpenGL. |
| 42 self.Fail('conformance/glsl/bugs/' + | 46 self.Fail('conformance/glsl/bugs/' + |
| 43 'pow-of-small-constant-in-user-defined-function.html', | 47 'pow-of-small-constant-in-user-defined-function.html', |
| 44 ['win'], bug=485641) | 48 ['win'], bug=485641) |
| 45 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', | 49 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', |
| 46 ['win'], bug=485642) | 50 ['win'], bug=485642) |
| 47 # Note that the following test seems to pass, but it may still be flaky. | 51 # Note that the following test seems to pass, but it may still be flaky. |
| 48 self.Fail('conformance/glsl/constructors/' + | 52 self.Fail('conformance/glsl/constructors/' + |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 self.Fail('conformance/textures/misc/texture-npot.html', | 375 self.Fail('conformance/textures/misc/texture-npot.html', |
| 372 ['chromeos', ('intel', 0xa011)], bug=375554) | 376 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 373 self.Fail('conformance/textures/misc/texture-npot-video.html', | 377 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 374 ['chromeos', ('intel', 0xa011)], bug=375554) | 378 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 375 self.Fail('conformance/textures/misc/texture-size.html', | 379 self.Fail('conformance/textures/misc/texture-size.html', |
| 376 ['chromeos', ('intel', 0xa011)], bug=375554) | 380 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 377 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 381 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 378 ['chromeos', ('intel', 0xa011)], bug=375554) | 382 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 379 self.Skip('conformance/uniforms/uniform-default-values.html', | 383 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 380 ['chromeos', ('intel', 0xa011)], bug=375554) | 384 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |