| 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 ['mac', ('nvidia', 0xfe9)], bug=635081) | 370 ['mac', ('nvidia', 0xfe9)], bug=635081) |
| 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 self.Flaky('conformance/uniforms/' + |
| 381 'no-over-optimization-on-uniform-array-12.html', |
| 382 ['mac', ('nvidia', 0xfe9)], bug=684903) |
| 380 | 383 |
| 381 # Mac ASAN only | 384 # Mac ASAN only |
| 382 self.Fail( | 385 self.Fail( |
| 383 'conformance/more/functions/copyTexImage2D.html', | 386 'conformance/more/functions/copyTexImage2D.html', |
| 384 ['mac', 'asan'], bug=681641) | 387 ['mac', 'asan'], bug=681641) |
| 385 self.Fail( | 388 self.Fail( |
| 386 'conformance/more/functions/copyTexSubImage2D.html', | 389 'conformance/more/functions/copyTexSubImage2D.html', |
| 387 ['mac', 'asan'], bug=681641) | 390 ['mac', 'asan'], bug=681641) |
| 388 | 391 |
| 389 # Linux failures | 392 # Linux failures |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 self.Fail('conformance/textures/misc/texture-npot.html', | 853 self.Fail('conformance/textures/misc/texture-npot.html', |
| 851 ['chromeos', ('intel', 0xa011)], bug=375554) | 854 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 852 self.Fail('conformance/textures/misc/texture-npot-video.html', | 855 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 853 ['chromeos', ('intel', 0xa011)], bug=375554) | 856 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 854 self.Fail('conformance/textures/misc/texture-size.html', | 857 self.Fail('conformance/textures/misc/texture-size.html', |
| 855 ['chromeos', ('intel', 0xa011)], bug=375554) | 858 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 856 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 859 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 857 ['chromeos', ('intel', 0xa011)], bug=375554) | 860 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 858 self.Skip('conformance/uniforms/uniform-default-values.html', | 861 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 859 ['chromeos', ('intel', 0xa011)], bug=375554) | 862 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |