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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 self.Fail('conformance/textures/image_bitmap_from_image/' + | 190 self.Fail('conformance/textures/image_bitmap_from_image/' + |
191 'tex-2d-rgba-rgba-unsigned_byte.html', | 191 'tex-2d-rgba-rgba-unsigned_byte.html', |
192 ['mac', 'intel'], bug=589930) | 192 ['mac', 'intel'], bug=589930) |
193 | 193 |
194 # Linux failures | 194 # Linux failures |
195 # NVIDIA | 195 # NVIDIA |
196 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 196 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
197 ['linux', 'nvidia'], bug=544989) # Too flaky to retry | 197 ['linux', 'nvidia'], bug=544989) # Too flaky to retry |
198 self.Flaky('conformance/extensions/oes-element-index-uint.html', | 198 self.Flaky('conformance/extensions/oes-element-index-uint.html', |
199 ['linux', 'nvidia'], bug=524144) | 199 ['linux', 'nvidia'], bug=524144) |
200 self.Flaky('conformance/textures/image/' + | |
201 'tex-2d-rgb-rgb-unsigned_byte.html', | |
202 ['linux', 'nvidia'], bug=596622) | |
203 # AMD | 200 # AMD |
204 self.Flaky('conformance/more/functions/uniformi.html', | 201 self.Flaky('conformance/more/functions/uniformi.html', |
205 ['linux', 'amd'], bug=550989) | 202 ['linux', 'amd'], bug=550989) |
206 self.Fail('deqp/data/gles2/shaders/preprocessor.html', | 203 self.Fail('deqp/data/gles2/shaders/preprocessor.html', |
207 ['linux', 'amd'], bug=478572) | 204 ['linux', 'amd'], bug=478572) |
208 | 205 |
209 # AMD Radeon 6450 | 206 # AMD Radeon 6450 |
210 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 207 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
211 ['linux', ('amd', 0x6779)], bug=479260) | 208 ['linux', ('amd', 0x6779)], bug=479260) |
212 self.Flaky('conformance/extensions/ext-texture-filter-anisotropic.html', | 209 self.Flaky('conformance/extensions/ext-texture-filter-anisotropic.html', |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 self.Fail('conformance/textures/misc/texture-npot.html', | 454 self.Fail('conformance/textures/misc/texture-npot.html', |
458 ['chromeos', ('intel', 0xa011)], bug=375554) | 455 ['chromeos', ('intel', 0xa011)], bug=375554) |
459 self.Fail('conformance/textures/misc/texture-npot-video.html', | 456 self.Fail('conformance/textures/misc/texture-npot-video.html', |
460 ['chromeos', ('intel', 0xa011)], bug=375554) | 457 ['chromeos', ('intel', 0xa011)], bug=375554) |
461 self.Fail('conformance/textures/misc/texture-size.html', | 458 self.Fail('conformance/textures/misc/texture-size.html', |
462 ['chromeos', ('intel', 0xa011)], bug=375554) | 459 ['chromeos', ('intel', 0xa011)], bug=375554) |
463 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 460 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
464 ['chromeos', ('intel', 0xa011)], bug=375554) | 461 ['chromeos', ('intel', 0xa011)], bug=375554) |
465 self.Skip('conformance/uniforms/uniform-default-values.html', | 462 self.Skip('conformance/uniforms/uniform-default-values.html', |
466 ['chromeos', ('intel', 0xa011)], bug=375554) | 463 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |