| 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_test_expectations import GpuTestExpectations | 6 from 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 102 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
| 103 self.Fail('conformance/rendering/gl-scissor-test.html', | 103 self.Fail('conformance/rendering/gl-scissor-test.html', |
| 104 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 104 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
| 105 self.Fail('deqp/data/gles2/shaders/constant_expressions.html', | 105 self.Fail('deqp/data/gles2/shaders/constant_expressions.html', |
| 106 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 106 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
| 107 self.Fail('deqp/data/gles2/shaders/constants.html', | 107 self.Fail('deqp/data/gles2/shaders/constants.html', |
| 108 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 108 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
| 109 self.Fail('deqp/data/gles2/shaders/swizzles.html', | 109 self.Fail('deqp/data/gles2/shaders/swizzles.html', |
| 110 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 110 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
| 111 | 111 |
| 112 # Win / OpenGL / Intel failures |
| 113 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 114 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
| 115 self.Fail('conformance/glsl/functions/glsl-function-normalize.html', |
| 116 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
| 117 self.Fail('conformance/glsl/misc/shader-struct-scope.html', |
| 118 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
| 119 self.Fail('conformance/uniforms/uniform-default-values.html', |
| 120 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
| 121 |
| 112 # Mac failures | 122 # Mac failures |
| 113 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 123 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 114 ['mac'], bug=421710) | 124 ['mac'], bug=421710) |
| 115 | 125 |
| 116 # Mac / Intel failures | 126 # Mac / Intel failures |
| 117 # Radar 13499466 | 127 # Radar 13499466 |
| 118 self.Fail('conformance/limits/gl-max-texture-dimensions.html', | 128 self.Fail('conformance/limits/gl-max-texture-dimensions.html', |
| 119 ['mac', 'intel'], bug=225642) | 129 ['mac', 'intel'], bug=225642) |
| 120 # Radar 13499623 | 130 # Radar 13499623 |
| 121 self.Fail('conformance/textures/misc/texture-size.html', | 131 self.Fail('conformance/textures/misc/texture-size.html', |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 475 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 466 ['chromeos', ('intel', 0xa011)], bug=375554) | 476 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 467 self.Skip('conformance/uniforms/uniform-default-values.html', | 477 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 468 ['chromeos', ('intel', 0xa011)], bug=375554) | 478 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 469 | 479 |
| 470 # Flaky on Mac & Linux | 480 # Flaky on Mac & Linux |
| 471 self.Fail('conformance/textures/misc/texture-upload-size.html', | 481 self.Fail('conformance/textures/misc/texture-upload-size.html', |
| 472 ['mac'], bug=436493) | 482 ['mac'], bug=436493) |
| 473 self.Fail('conformance/textures/misc/texture-upload-size.html', | 483 self.Fail('conformance/textures/misc/texture-upload-size.html', |
| 474 ['linux'], bug=436493) | 484 ['linux'], bug=436493) |
| OLD | NEW |