| 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 self.Fail('conformance/programs/' + | 371 self.Fail('conformance/programs/' + |
| 372 'gl-bind-attrib-location-long-names-test.html', | 372 'gl-bind-attrib-location-long-names-test.html', |
| 373 ['mac', ('nvidia', 0xfe9)], bug=635081) | 373 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 374 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', | 374 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', |
| 375 ['mac', ('nvidia', 0xfe9)], bug=635081) | 375 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 376 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', | 376 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', |
| 377 ['mac', ('nvidia', 0xfe9)], bug=635081) | 377 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 378 self.Fail('conformance/textures/misc/tex-input-validation.html', | 378 self.Fail('conformance/textures/misc/tex-input-validation.html', |
| 379 ['mac', ('nvidia', 0xfe9)], bug=635081) | 379 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 380 | 380 |
| 381 # Mac Intel | 381 # Mac ASAN only |
| 382 | |
| 383 # ASAN only | |
| 384 self.Fail( | 382 self.Fail( |
| 385 'conformance/more/functions/copyTexImage2D.html', | 383 'conformance/more/functions/copyTexImage2D.html', |
| 386 ['mac', 'intel', 'asan'], bug=681641) | 384 ['mac', 'asan'], bug=681641) |
| 387 self.Fail( | 385 self.Fail( |
| 388 'conformance/more/functions/copyTexSubImage2D.html', | 386 'conformance/more/functions/copyTexSubImage2D.html', |
| 389 ['mac', 'intel', 'asan'], bug=681641) | 387 ['mac', 'asan'], bug=681641) |
| 390 | 388 |
| 391 # Linux failures | 389 # Linux failures |
| 392 self.Flaky('conformance/textures/video/' + | 390 self.Flaky('conformance/textures/video/' + |
| 393 'tex-2d-rgba-rgba-unsigned_byte.html', | 391 'tex-2d-rgba-rgba-unsigned_byte.html', |
| 394 ['linux'], bug=627525) | 392 ['linux'], bug=627525) |
| 395 self.Flaky('conformance/textures/video/' + | 393 self.Flaky('conformance/textures/video/' + |
| 396 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', | 394 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', |
| 397 ['linux'], bug=627525) | 395 ['linux'], bug=627525) |
| 398 self.Flaky('conformance/textures/video/' + | 396 self.Flaky('conformance/textures/video/' + |
| 399 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', | 397 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 self.Fail('conformance/textures/misc/texture-npot.html', | 852 self.Fail('conformance/textures/misc/texture-npot.html', |
| 855 ['chromeos', ('intel', 0xa011)], bug=375554) | 853 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 856 self.Fail('conformance/textures/misc/texture-npot-video.html', | 854 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 857 ['chromeos', ('intel', 0xa011)], bug=375554) | 855 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 858 self.Fail('conformance/textures/misc/texture-size.html', | 856 self.Fail('conformance/textures/misc/texture-size.html', |
| 859 ['chromeos', ('intel', 0xa011)], bug=375554) | 857 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 860 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 858 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 861 ['chromeos', ('intel', 0xa011)], bug=375554) | 859 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 862 self.Skip('conformance/uniforms/uniform-default-values.html', | 860 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 863 ['chromeos', ('intel', 0xa011)], bug=375554) | 861 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |