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