| 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 # Mac Retina NVIDIA failures | 193 # Mac Retina NVIDIA failures |
| 194 self.Fail( | 194 self.Fail( |
| 195 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', | 195 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', |
| 196 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) | 196 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) |
| 197 self.Fail('conformance/textures/image_bitmap_from_image/*', | 197 self.Fail('conformance/textures/image_bitmap_from_image/*', |
| 198 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=589930) | 198 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=589930) |
| 199 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 199 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 200 ['mavericks', ('nvidia', 0xfe9)], bug=586536) | 200 ['mavericks', ('nvidia', 0xfe9)], bug=586536) |
| 201 | 201 |
| 202 # Mac Retina AMD failures | 202 # Mac Retina AMD failures |
| 203 self.Flaky('conformance/extensions/oes-texture-float-with-video.html', |
| 204 ['mac', ('amd', 0x6821)], bug=599272) |
| 203 self.Fail('conformance/textures/image_bitmap_from_image/*', | 205 self.Fail('conformance/textures/image_bitmap_from_image/*', |
| 204 ['mac', ('amd', 0x6821)], bug=589930) | 206 ['mac', ('amd', 0x6821)], bug=589930) |
| 205 | 207 |
| 206 # Mac AMD failures | 208 # Mac AMD failures |
| 207 self.Fail('conformance/textures/image_bitmap_from_image/' + | 209 self.Fail('conformance/textures/image_bitmap_from_image/' + |
| 208 'tex-2d-rgb-rgb-unsigned_byte.html', | 210 'tex-2d-rgb-rgb-unsigned_byte.html', |
| 209 ['mac', ('amd', 0x679e)], bug=589930) | 211 ['mac', ('amd', 0x679e)], bug=589930) |
| 210 self.Fail('conformance/textures/image_bitmap_from_image/' + | 212 self.Fail('conformance/textures/image_bitmap_from_image/' + |
| 211 'tex-2d-rgba-rgba-unsigned_byte.html', | 213 'tex-2d-rgba-rgba-unsigned_byte.html', |
| 212 ['mac', ('amd', 0x679e)], bug=589930) | 214 ['mac', ('amd', 0x679e)], bug=589930) |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 self.Fail('conformance/textures/misc/texture-npot.html', | 487 self.Fail('conformance/textures/misc/texture-npot.html', |
| 486 ['chromeos', ('intel', 0xa011)], bug=375554) | 488 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 487 self.Fail('conformance/textures/misc/texture-npot-video.html', | 489 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 488 ['chromeos', ('intel', 0xa011)], bug=375554) | 490 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 489 self.Fail('conformance/textures/misc/texture-size.html', | 491 self.Fail('conformance/textures/misc/texture-size.html', |
| 490 ['chromeos', ('intel', 0xa011)], bug=375554) | 492 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 491 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 493 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 492 ['chromeos', ('intel', 0xa011)], bug=375554) | 494 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 493 self.Skip('conformance/uniforms/uniform-default-values.html', | 495 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 494 ['chromeos', ('intel', 0xa011)], bug=375554) | 496 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |