| 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID | 345 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID |
| 346 | 346 |
| 347 # Win / Intel / Passthrough command decoder | 347 # Win / Intel / Passthrough command decoder |
| 348 self.Flaky('conformance/renderbuffers/framebuffer-state-restoration.html', | 348 self.Flaky('conformance/renderbuffers/framebuffer-state-restoration.html', |
| 349 ['win', 'intel', 'passthrough', 'd3d11'], bug=602688) | 349 ['win', 'intel', 'passthrough', 'd3d11'], bug=602688) |
| 350 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', | 350 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', |
| 351 ['win', 'intel', 'passthrough', 'd3d11'], bug=1635) # angle bug ID | 351 ['win', 'intel', 'passthrough', 'd3d11'], bug=1635) # angle bug ID |
| 352 self.Fail('conformance/textures/misc/' + | 352 self.Fail('conformance/textures/misc/' + |
| 353 'copytexsubimage2d-large-partial-copy-corruption.html', | 353 'copytexsubimage2d-large-partial-copy-corruption.html', |
| 354 ['win', 'intel', 'passthrough', 'd3d11'], bug=602688) | 354 ['win', 'intel', 'passthrough', 'd3d11'], bug=602688) |
| 355 self.Flaky('conformance/textures/misc/copytexsubimage2d-subrects.html', | 355 self.Fail('conformance/textures/misc/copytexsubimage2d-subrects.html', |
| 356 ['win10', 'intel', 'passthrough', 'd3d11'], bug=685232) | 356 ['win10', 'intel', 'passthrough', 'd3d11'], bug=685232) |
| 357 | 357 |
| 358 # Mac failures | 358 # Mac failures |
| 359 self.Flaky('conformance/extensions/oes-texture-float-with-video.html', | 359 self.Flaky('conformance/extensions/oes-texture-float-with-video.html', |
| 360 ['mac'], bug=599272) | 360 ['mac'], bug=599272) |
| 361 | 361 |
| 362 # Mac AMD failures | 362 # Mac AMD failures |
| 363 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', | 363 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', |
| 364 ['mac', 'amd'], bug=483282) | 364 ['mac', 'amd'], bug=483282) |
| 365 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 365 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 self.Fail('conformance/textures/misc/texture-npot.html', | 852 self.Fail('conformance/textures/misc/texture-npot.html', |
| 853 ['chromeos', ('intel', 0xa011)], bug=375554) | 853 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 854 self.Fail('conformance/textures/misc/texture-npot-video.html', | 854 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 855 ['chromeos', ('intel', 0xa011)], bug=375554) | 855 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 856 self.Fail('conformance/textures/misc/texture-size.html', | 856 self.Fail('conformance/textures/misc/texture-size.html', |
| 857 ['chromeos', ('intel', 0xa011)], bug=375554) | 857 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 858 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 858 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 859 ['chromeos', ('intel', 0xa011)], bug=375554) | 859 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 860 self.Skip('conformance/uniforms/uniform-default-values.html', | 860 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 861 ['chromeos', ('intel', 0xa011)], bug=375554) | 861 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |