| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', | 193 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', |
| 194 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) | 194 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) |
| 195 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 195 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 196 ['mavericks', ('nvidia', 0xfe9)], bug=586536) | 196 ['mavericks', ('nvidia', 0xfe9)], bug=586536) |
| 197 | 197 |
| 198 # Mac Retina AMD failures | 198 # Mac Retina AMD failures |
| 199 self.Flaky('conformance/extensions/oes-texture-float-with-video.html', | 199 self.Flaky('conformance/extensions/oes-texture-float-with-video.html', |
| 200 ['mac', ('amd', 0x6821)], bug=599272) | 200 ['mac', ('amd', 0x6821)], bug=599272) |
| 201 | 201 |
| 202 # Linux failures | 202 # Linux failures |
| 203 # OpenGL |
| 204 self.Fail('conformance/extensions/oes-texture-half-float.html', |
| 205 ['linux', 'opengl'], bug=607283) |
| 206 |
| 203 # NVIDIA | 207 # NVIDIA |
| 204 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 208 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
| 205 ['linux', 'nvidia'], bug=544989) # Too flaky to retry | 209 ['linux', 'nvidia'], bug=544989) # Too flaky to retry |
| 206 self.Flaky('conformance/extensions/oes-element-index-uint.html', | 210 self.Flaky('conformance/extensions/oes-element-index-uint.html', |
| 207 ['linux', 'nvidia'], bug=524144) | 211 ['linux', 'nvidia'], bug=524144) |
| 208 self.Flaky('conformance/textures/image/' + | 212 self.Flaky('conformance/textures/image/' + |
| 209 'tex-2d-rgb-rgb-unsigned_byte.html', | 213 'tex-2d-rgb-rgb-unsigned_byte.html', |
| 210 ['linux', 'nvidia'], bug=596622) | 214 ['linux', 'nvidia'], bug=596622) |
| 211 # AMD | 215 # AMD |
| 212 self.Flaky('conformance/more/functions/uniformi.html', | 216 self.Flaky('conformance/more/functions/uniformi.html', |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 self.Fail('conformance/textures/misc/texture-npot.html', | 469 self.Fail('conformance/textures/misc/texture-npot.html', |
| 466 ['chromeos', ('intel', 0xa011)], bug=375554) | 470 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 467 self.Fail('conformance/textures/misc/texture-npot-video.html', | 471 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 468 ['chromeos', ('intel', 0xa011)], bug=375554) | 472 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 469 self.Fail('conformance/textures/misc/texture-size.html', | 473 self.Fail('conformance/textures/misc/texture-size.html', |
| 470 ['chromeos', ('intel', 0xa011)], bug=375554) | 474 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 471 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 475 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 472 ['chromeos', ('intel', 0xa011)], bug=375554) | 476 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 473 self.Skip('conformance/uniforms/uniform-default-values.html', | 477 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 474 ['chromeos', ('intel', 0xa011)], bug=375554) | 478 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |