| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 # Win7 / Intel failures | 132 # Win7 / Intel failures |
| 133 self.Fail('conformance/textures/misc/' + | 133 self.Fail('conformance/textures/misc/' + |
| 134 'copy-tex-image-and-sub-image-2d.html', | 134 'copy-tex-image-and-sub-image-2d.html', |
| 135 ['win7', 'intel', 'no_passthrough']) | 135 ['win7', 'intel', 'no_passthrough']) |
| 136 | 136 |
| 137 # Win7 / NVIDIA D3D9 failures | 137 # Win7 / NVIDIA D3D9 failures |
| 138 self.Flaky('conformance/canvas/canvas-test.html', | 138 self.Flaky('conformance/canvas/canvas-test.html', |
| 139 ['win7', 'nvidia', 'd3d9'], bug=690248) | 139 ['win7', 'nvidia', 'd3d9'], bug=690248) |
| 140 | 140 |
| 141 # Win / Intel HD 530 failures | |
| 142 self.Fail('conformance/canvas/to-data-url-test.html', | |
| 143 ['win', 'intel'], bug=680797) | |
| 144 | |
| 145 # Win / AMD flakiness seen on new tryservers. | 141 # Win / AMD flakiness seen on new tryservers. |
| 146 # It's unfortunate that this suppression needs to be so broad, but | 142 # It's unfortunate that this suppression needs to be so broad, but |
| 147 # basically any test that uses readPixels is potentially flaky, and | 143 # basically any test that uses readPixels is potentially flaky, and |
| 148 # it's infeasible to suppress individual failures one by one. | 144 # it's infeasible to suppress individual failures one by one. |
| 149 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) | 145 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) |
| 150 | 146 |
| 151 # Win AMD failures | 147 # Win AMD failures |
| 152 # This test is probably flaky on all AMD, but only visible on the | 148 # This test is probably flaky on all AMD, but only visible on the |
| 153 # new AMD (the whole test suite is flaky on the old config). | 149 # new AMD (the whole test suite is flaky on the old config). |
| 154 # Mark as Fail since it often flakes in all 3 retries | 150 # Mark as Fail since it often flakes in all 3 retries |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 self.Fail('conformance/textures/misc/texture-npot.html', | 677 self.Fail('conformance/textures/misc/texture-npot.html', |
| 682 ['chromeos', ('intel', 0xa011)], bug=375554) | 678 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 683 self.Fail('conformance/textures/misc/texture-npot-video.html', | 679 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 684 ['chromeos', ('intel', 0xa011)], bug=375554) | 680 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 685 self.Fail('conformance/textures/misc/texture-size.html', | 681 self.Fail('conformance/textures/misc/texture-size.html', |
| 686 ['chromeos', ('intel', 0xa011)], bug=375554) | 682 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 687 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 683 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 688 ['chromeos', ('intel', 0xa011)], bug=375554) | 684 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 689 self.Skip('conformance/uniforms/uniform-default-values.html', | 685 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 690 ['chromeos', ('intel', 0xa011)], bug=375554) | 686 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |