| 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 | 4 |
| 5 from gpu_test_expectations import GpuTestExpectations | 5 from gpu_test_expectations import GpuTestExpectations |
| 6 | 6 |
| 7 # See the GpuTestExpectations class for documentation. | 7 # See the GpuTestExpectations class for documentation. |
| 8 | 8 |
| 9 class WebGLConformanceExpectations(GpuTestExpectations): | 9 class WebGLConformanceExpectations(GpuTestExpectations): |
| 10 def SetExpectations(self): | 10 def SetExpectations(self): |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 self.Fail('conformance/glsl/misc/shader-struct-scope.html', | 191 self.Fail('conformance/glsl/misc/shader-struct-scope.html', |
| 192 ['linux', ('amd', 0x6779)], bug=436212) | 192 ['linux', ('amd', 0x6779)], bug=436212) |
| 193 self.Fail('conformance/glsl/misc/struct-nesting-of-variable-names.html', | 193 self.Fail('conformance/glsl/misc/struct-nesting-of-variable-names.html', |
| 194 ['linux', ('amd', 0x6779)], bug=436212) | 194 ['linux', ('amd', 0x6779)], bug=436212) |
| 195 self.Fail('conformance/rendering/point-size.html', | 195 self.Fail('conformance/rendering/point-size.html', |
| 196 ['linux', ('amd', 0x6779)], bug=436212) | 196 ['linux', ('amd', 0x6779)], bug=436212) |
| 197 self.Fail('conformance/textures/texture-sub-image-cube-maps.html', | 197 self.Fail('conformance/textures/texture-sub-image-cube-maps.html', |
| 198 ['linux', ('amd', 0x6779)], bug=436212) | 198 ['linux', ('amd', 0x6779)], bug=436212) |
| 199 self.Fail('conformance/more/functions/uniformf.html', | 199 self.Fail('conformance/more/functions/uniformf.html', |
| 200 ['linux', ('amd', 0x6779)], bug=436212) | 200 ['linux', ('amd', 0x6779)], bug=436212) |
| 201 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 202 ['linux', ('amd', 0x6779)], bug=479952) |
| 203 self.Fail('conformance/textures/texture-mips.html', |
| 204 ['linux', ('amd', 0x6779)], bug=479981) |
| 205 self.Fail('conformance/textures/texture-size-cube-maps.html', |
| 206 ['linux', ('amd', 0x6779)], bug=479983) |
| 201 | 207 |
| 202 # Android failures | 208 # Android failures |
| 203 # The following test is very slow and therefore times out on Android bot. | 209 # The following test is very slow and therefore times out on Android bot. |
| 204 self.Skip('conformance/rendering/multisample-corruption.html', | 210 self.Skip('conformance/rendering/multisample-corruption.html', |
| 205 ['android']) | 211 ['android']) |
| 206 # The following test times out on Android bot. | 212 # The following test times out on Android bot. |
| 207 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 213 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 208 ['android'], bug=369300) | 214 ['android'], bug=369300) |
| 209 self.Fail('conformance/glsl/misc/empty_main.vert.html', | 215 self.Fail('conformance/glsl/misc/empty_main.vert.html', |
| 210 ['android'], bug=315976) | 216 ['android'], bug=315976) |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 324 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 319 ['chromeos', ('intel', 0xa011)], bug=375554) | 325 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 320 self.Skip('conformance/uniforms/uniform-default-values.html', | 326 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 321 ['chromeos', ('intel', 0xa011)], bug=375554) | 327 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 322 | 328 |
| 323 # Flaky on Mac & Linux | 329 # Flaky on Mac & Linux |
| 324 self.Fail('conformance/textures/texture-upload-size.html', | 330 self.Fail('conformance/textures/texture-upload-size.html', |
| 325 ['mac'], bug=436493) | 331 ['mac'], bug=436493) |
| 326 self.Fail('conformance/textures/texture-upload-size.html', | 332 self.Fail('conformance/textures/texture-upload-size.html', |
| 327 ['linux'], bug=436493) | 333 ['linux'], bug=436493) |
| OLD | NEW |