| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 self.Fail('conformance/programs/' + | 363 self.Fail('conformance/programs/' + |
| 364 'gl-bind-attrib-location-long-names-test.html', | 364 'gl-bind-attrib-location-long-names-test.html', |
| 365 ['mac', ('nvidia', 0xfe9)], bug=635081) | 365 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 366 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', | 366 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', |
| 367 ['mac', ('nvidia', 0xfe9)], bug=635081) | 367 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 368 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', | 368 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', |
| 369 ['mac', ('nvidia', 0xfe9)], bug=635081) | 369 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 370 self.Fail('conformance/textures/misc/tex-input-validation.html', | 370 self.Fail('conformance/textures/misc/tex-input-validation.html', |
| 371 ['mac', ('nvidia', 0xfe9)], bug=635081) | 371 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 372 | 372 |
| 373 # Mac ASAN only | |
| 374 self.Fail( | |
| 375 'conformance/more/functions/copyTexImage2D.html', | |
| 376 ['mac', 'asan'], bug=681641) | |
| 377 self.Fail( | |
| 378 'conformance/more/functions/copyTexSubImage2D.html', | |
| 379 ['mac', 'asan'], bug=681641) | |
| 380 | |
| 381 # Linux failures | 373 # Linux failures |
| 382 self.Flaky('conformance/textures/video/' + | 374 self.Flaky('conformance/textures/video/' + |
| 383 'tex-2d-rgba-rgba-unsigned_byte.html', | 375 'tex-2d-rgba-rgba-unsigned_byte.html', |
| 384 ['linux'], bug=627525) | 376 ['linux'], bug=627525) |
| 385 self.Flaky('conformance/textures/video/' + | 377 self.Flaky('conformance/textures/video/' + |
| 386 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', | 378 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', |
| 387 ['linux'], bug=627525) | 379 ['linux'], bug=627525) |
| 388 self.Flaky('conformance/textures/video/' + | 380 self.Flaky('conformance/textures/video/' + |
| 389 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', | 381 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', |
| 390 ['linux'], bug=627525) | 382 ['linux'], bug=627525) |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 self.Fail('conformance/textures/misc/texture-npot.html', | 708 self.Fail('conformance/textures/misc/texture-npot.html', |
| 717 ['chromeos', ('intel', 0xa011)], bug=375554) | 709 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 718 self.Fail('conformance/textures/misc/texture-npot-video.html', | 710 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 719 ['chromeos', ('intel', 0xa011)], bug=375554) | 711 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 720 self.Fail('conformance/textures/misc/texture-size.html', | 712 self.Fail('conformance/textures/misc/texture-size.html', |
| 721 ['chromeos', ('intel', 0xa011)], bug=375554) | 713 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 722 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 714 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 723 ['chromeos', ('intel', 0xa011)], bug=375554) | 715 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 724 self.Skip('conformance/uniforms/uniform-default-values.html', | 716 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 725 ['chromeos', ('intel', 0xa011)], bug=375554) | 717 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |