| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 self.Fail('conformance/glsl/variables/gl-pointcoord.html', | 140 self.Fail('conformance/glsl/variables/gl-pointcoord.html', |
| 141 ['win', 'opengl'], bug=1007) # angle bug ID | 141 ['win', 'opengl'], bug=1007) # angle bug ID |
| 142 self.Fail('conformance/reading/read-pixels-pack-alignment.html', | 142 self.Fail('conformance/reading/read-pixels-pack-alignment.html', |
| 143 ['win', 'opengl'], bug=1007) # angle bug ID | 143 ['win', 'opengl'], bug=1007) # angle bug ID |
| 144 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', | 144 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', |
| 145 ['win', 'opengl'], bug=1007) # angle bug ID | 145 ['win', 'opengl'], bug=1007) # angle bug ID |
| 146 self.Fail('conformance/textures/gl-pixelstorei.html', | 146 self.Fail('conformance/textures/gl-pixelstorei.html', |
| 147 ['win', 'opengl'], bug=1007) # angle bug ID | 147 ['win', 'opengl'], bug=1007) # angle bug ID |
| 148 self.Fail('conformance/textures/tex-image-canvas-corruption.html', | 148 self.Fail('conformance/textures/tex-image-canvas-corruption.html', |
| 149 ['win', 'opengl'], bug=1007) # angle bug ID | 149 ['win', 'opengl'], bug=1007) # angle bug ID |
| 150 self.Fail('deqp/data/gles2/shaders/conditionals.html', |
| 151 ['win', 'opengl'], bug=1007) # angle bug ID |
| 152 self.Fail('deqp/data/gles2/shaders/conversions.html', |
| 153 ['win', 'opengl'], bug=1007) # angle bug ID |
| 154 self.Fail('deqp/data/gles2/shaders/qualification_order.html', |
| 155 ['win', 'opengl'], bug=1007) # angle bug ID |
| 156 |
| 157 # Skip all WebGL CTS on OpenGL+AMD/Intel |
| 158 self.Skip('*', ['win', 'opengl', 'amd'], bug=1007) # angle bug ID |
| 159 self.Skip('*', ['win', 'opengl', 'intel'], bug=1007) # angle bug ID |
| 150 | 160 |
| 151 # Mac failures | 161 # Mac failures |
| 152 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 162 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 153 ['mac'], bug=421710) | 163 ['mac'], bug=421710) |
| 154 | 164 |
| 155 # Mac / Intel failures | 165 # Mac / Intel failures |
| 156 # Radar 13499466 | 166 # Radar 13499466 |
| 157 self.Fail('conformance/limits/gl-max-texture-dimensions.html', | 167 self.Fail('conformance/limits/gl-max-texture-dimensions.html', |
| 158 ['mac', 'intel'], bug=225642) | 168 ['mac', 'intel'], bug=225642) |
| 159 # Radar 13499623 | 169 # Radar 13499623 |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 'multisampled-renderbuffer-initialization.html', | 499 'multisampled-renderbuffer-initialization.html', |
| 490 ['mac'], bug=483282) | 500 ['mac'], bug=483282) |
| 491 self.Fail('conformance2/rendering/instanced-arrays.html', | 501 self.Fail('conformance2/rendering/instanced-arrays.html', |
| 492 ['mac'], bug=483282) | 502 ['mac'], bug=483282) |
| 493 self.Fail('conformance2/textures/tex-storage-and-subimage-3d.html', | 503 self.Fail('conformance2/textures/tex-storage-and-subimage-3d.html', |
| 494 ['mac'], bug=483282) | 504 ['mac'], bug=483282) |
| 495 | 505 |
| 496 # Win only (using OpenGL). | 506 # Win only (using OpenGL). |
| 497 self.Fail('conformance2/textures/tex-storage-and-subimage-3d.html', | 507 self.Fail('conformance2/textures/tex-storage-and-subimage-3d.html', |
| 498 ['win'], bug=483282) | 508 ['win'], bug=483282) |
| OLD | NEW |