| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 self.Flaky('conformance/glsl/samplers/glsl-function-texture2dprojlod.html', | 464 self.Flaky('conformance/glsl/samplers/glsl-function-texture2dprojlod.html', |
| 465 ['linux', ('amd', 0x6779)], bug=436212) | 465 ['linux', ('amd', 0x6779)], bug=436212) |
| 466 # Intel | 466 # Intel |
| 467 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 | 467 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 |
| 468 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', | 468 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', |
| 469 ['linux', 'intel'], bug=540543) # GPU timeout | 469 ['linux', 'intel'], bug=540543) # GPU timeout |
| 470 # Fixed on Mesa 12.0 | 470 # Fixed on Mesa 12.0 |
| 471 self.Fail('conformance/rendering/clipping-wide-points.html', | 471 self.Fail('conformance/rendering/clipping-wide-points.html', |
| 472 ['linux', 'intel'], bug=642822) | 472 ['linux', 'intel'], bug=642822) |
| 473 | 473 |
| 474 self.Fail('WebglExtension_EXT_disjoint_timer_query', |
| 475 ['linux', 'intel'], bug=687210) |
| 476 |
| 474 #################### | 477 #################### |
| 475 # Android failures # | 478 # Android failures # |
| 476 #################### | 479 #################### |
| 477 | 480 |
| 478 self.Fail('conformance/glsl/bugs/sequence-operator-evaluation-order.html', | 481 self.Fail('conformance/glsl/bugs/sequence-operator-evaluation-order.html', |
| 479 ['android'], bug=478572) | 482 ['android'], bug=478572) |
| 480 # The following test is very slow and therefore times out on Android bot. | 483 # The following test is very slow and therefore times out on Android bot. |
| 481 self.Skip('conformance/rendering/multisample-corruption.html', | 484 self.Skip('conformance/rendering/multisample-corruption.html', |
| 482 ['android']) | 485 ['android']) |
| 483 self.Fail('conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html', | 486 self.Fail('conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html', |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 self.Fail('conformance/textures/misc/texture-npot.html', | 867 self.Fail('conformance/textures/misc/texture-npot.html', |
| 865 ['chromeos', ('intel', 0xa011)], bug=375554) | 868 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 866 self.Fail('conformance/textures/misc/texture-npot-video.html', | 869 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 867 ['chromeos', ('intel', 0xa011)], bug=375554) | 870 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 868 self.Fail('conformance/textures/misc/texture-size.html', | 871 self.Fail('conformance/textures/misc/texture-size.html', |
| 869 ['chromeos', ('intel', 0xa011)], bug=375554) | 872 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 870 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 873 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 871 ['chromeos', ('intel', 0xa011)], bug=375554) | 874 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 872 self.Skip('conformance/uniforms/uniform-default-values.html', | 875 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 873 ['chromeos', ('intel', 0xa011)], bug=375554) | 876 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |