| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 self.Fail('conformance/rendering/point-specific-shader-variables.html', | 121 self.Fail('conformance/rendering/point-specific-shader-variables.html', |
| 122 ['win'], bug=616335) | 122 ['win'], bug=616335) |
| 123 self.Fail('deqp/data/gles2/shaders/functions.html', | 123 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 124 ['win'], bug=478572) | 124 ['win'], bug=478572) |
| 125 | 125 |
| 126 # Win NVIDIA failures | 126 # Win NVIDIA failures |
| 127 self.Flaky('conformance/textures/misc/texture-npot-video.html', | 127 self.Flaky('conformance/textures/misc/texture-npot-video.html', |
| 128 ['win', 'nvidia'], bug=626524) | 128 ['win', 'nvidia'], bug=626524) |
| 129 self.Flaky('conformance/textures/misc/texture-upload-size.html', | 129 self.Flaky('conformance/textures/misc/texture-upload-size.html', |
| 130 ['win', 'nvidia'], bug=630860) | 130 ['win', 'nvidia'], bug=630860) |
| 131 self.Flaky('conformance/glsl/bugs/nested-sequence-operator.html', | |
| 132 ['win', 'nvidia'], bug=1517) # ANGLE bug. | |
| 133 | 131 |
| 134 # Win7 / Intel failures | 132 # Win7 / Intel failures |
| 135 self.Fail('conformance/textures/misc/' + | 133 self.Fail('conformance/textures/misc/' + |
| 136 'copy-tex-image-and-sub-image-2d.html', | 134 'copy-tex-image-and-sub-image-2d.html', |
| 137 ['win7', 'intel']) | 135 ['win7', 'intel']) |
| 138 | 136 |
| 139 # Win / AMD flakiness seen on new tryservers. | 137 # Win / AMD flakiness seen on new tryservers. |
| 140 # It's unfortunate that this suppression needs to be so broad, but | 138 # It's unfortunate that this suppression needs to be so broad, but |
| 141 # basically any test that uses readPixels is potentially flaky, and | 139 # basically any test that uses readPixels is potentially flaky, and |
| 142 # it's infeasible to suppress individual failures one by one. | 140 # it's infeasible to suppress individual failures one by one. |
| (...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 self.Fail('conformance/textures/misc/texture-npot.html', | 712 self.Fail('conformance/textures/misc/texture-npot.html', |
| 715 ['chromeos', ('intel', 0xa011)], bug=375554) | 713 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 716 self.Fail('conformance/textures/misc/texture-npot-video.html', | 714 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 717 ['chromeos', ('intel', 0xa011)], bug=375554) | 715 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 718 self.Fail('conformance/textures/misc/texture-size.html', | 716 self.Fail('conformance/textures/misc/texture-size.html', |
| 719 ['chromeos', ('intel', 0xa011)], bug=375554) | 717 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 720 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 718 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 721 ['chromeos', ('intel', 0xa011)], bug=375554) | 719 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 722 self.Skip('conformance/uniforms/uniform-default-values.html', | 720 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 723 ['chromeos', ('intel', 0xa011)], bug=375554) | 721 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |