| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 ['mac'], bug=421710) | 127 ['mac'], bug=421710) |
| 128 self.Fail('deqp/data/gles2/shaders/preprocessor.html', | 128 self.Fail('deqp/data/gles2/shaders/preprocessor.html', |
| 129 ['mac'], bug=478572) | 129 ['mac'], bug=478572) |
| 130 | 130 |
| 131 # Mac Retina NVIDIA failures | 131 # Mac Retina NVIDIA failures |
| 132 self.Fail( | 132 self.Fail( |
| 133 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', | 133 'conformance/glsl/bugs/array-of-struct-with-int-first-position.html', |
| 134 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) | 134 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=368912) |
| 135 self.Fail('conformance/textures/image_bitmap_from_image/*', | 135 self.Fail('conformance/textures/image_bitmap_from_image/*', |
| 136 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=589930) | 136 ['mac', ('nvidia', 0xfd5), ('nvidia', 0xfe9)], bug=589930) |
| 137 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 138 ['mavericks', ('nvidia', 0xfe9)], bug=586536) |
| 137 | 139 |
| 138 # Mac Retina AMD failures | 140 # Mac Retina AMD failures |
| 139 self.Fail('conformance/textures/image_bitmap_from_image/*', | 141 self.Fail('conformance/textures/image_bitmap_from_image/*', |
| 140 ['mac', ('amd', 0x6821)], bug=589930) | 142 ['mac', ('amd', 0x6821)], bug=589930) |
| 141 | 143 |
| 142 # Mac AMD failures | 144 # Mac AMD failures |
| 143 self.Fail('conformance/textures/image_bitmap_from_image/' + | 145 self.Fail('conformance/textures/image_bitmap_from_image/' + |
| 144 'tex-2d-rgb-rgb-unsigned_byte.html', | 146 'tex-2d-rgb-rgb-unsigned_byte.html', |
| 145 ['mac', ('amd', 0x679e)], bug=589930) | 147 ['mac', ('amd', 0x679e)], bug=589930) |
| 146 self.Fail('conformance/textures/image_bitmap_from_image/' + | 148 self.Fail('conformance/textures/image_bitmap_from_image/' + |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 self.Fail('conformance/textures/misc/texture-npot.html', | 419 self.Fail('conformance/textures/misc/texture-npot.html', |
| 418 ['chromeos', ('intel', 0xa011)], bug=375554) | 420 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 419 self.Fail('conformance/textures/misc/texture-npot-video.html', | 421 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 420 ['chromeos', ('intel', 0xa011)], bug=375554) | 422 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 421 self.Fail('conformance/textures/misc/texture-size.html', | 423 self.Fail('conformance/textures/misc/texture-size.html', |
| 422 ['chromeos', ('intel', 0xa011)], bug=375554) | 424 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 423 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 425 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 424 ['chromeos', ('intel', 0xa011)], bug=375554) | 426 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 425 self.Skip('conformance/uniforms/uniform-default-values.html', | 427 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 426 ['chromeos', ('intel', 0xa011)], bug=375554) | 428 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |