Chromium Code Reviews| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 229 ['android'], bug=478572) | 229 ['android'], bug=478572) |
| 230 self.Fail('deqp/data/gles2/shaders/conversions.html', | 230 self.Fail('deqp/data/gles2/shaders/conversions.html', |
| 231 ['android'], bug=478572) | 231 ['android'], bug=478572) |
| 232 self.Fail('deqp/data/gles2/shaders/declarations.html', | 232 self.Fail('deqp/data/gles2/shaders/declarations.html', |
| 233 ['android'], bug=478572) | 233 ['android'], bug=478572) |
| 234 self.Fail('deqp/data/gles2/shaders/linkage.html', | 234 self.Fail('deqp/data/gles2/shaders/linkage.html', |
| 235 ['android'], bug=478572) | 235 ['android'], bug=478572) |
| 236 self.Fail('conformance/textures/image/tex-image-and-sub-image-2d-' + | 236 self.Fail('conformance/textures/image/tex-image-and-sub-image-2d-' + |
| 237 'with-image-rgb-rgb-unsigned_byte.html', | 237 'with-image-rgb-rgb-unsigned_byte.html', |
| 238 ['android'], bug=586183) | 238 ['android'], bug=586183) |
| 239 self.Fail('conformance/textures/misc/texture-npot-video.html', | |
| 240 ['android', 'android-content-shell'], bug=601110) | |
| 241 self.Fail('conformance/textures/video/*', | |
|
Ken Russell (switch to Gerrit)
2016/04/06 22:10:41
This suppression seems overly broad, but OK.
Note
| |
| 242 ['android'], bug=601110) | |
| 239 # The following tests timed out on android, so skip them for now. | 243 # The following tests timed out on android, so skip them for now. |
| 240 self.Skip('conformance/textures/image_bitmap_from_video/*', | 244 self.Skip('conformance/textures/image_bitmap_from_video/*', |
| 241 ['android'], bug=585108) | 245 ['android'], bug=585108) |
| 242 # The following WebView crashes are causing problems with further | 246 # The following WebView crashes are causing problems with further |
| 243 # tests in the suite, so skip them for now. | 247 # tests in the suite, so skip them for now. |
| 244 self.Skip('conformance/textures/video/tex-image-and-sub-image-2d-with-' + | 248 self.Skip('conformance/textures/video/tex-image-and-sub-image-2d-with-' + |
| 245 'video-rgb-rgb-unsigned_byte.html', | 249 'video-rgb-rgb-unsigned_byte.html', |
| 246 ['android', 'android-webview-shell'], bug=352645) | 250 ['android', 'android-webview-shell'], bug=352645) |
| 247 self.Skip('conformance/textures/video/tex-image-and-sub-image-2d-with-' + | 251 self.Skip('conformance/textures/video/tex-image-and-sub-image-2d-with-' + |
| 248 'video-rgb-rgb-unsigned_short_5_6_5.html', | 252 'video-rgb-rgb-unsigned_short_5_6_5.html', |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 423 self.Fail('conformance/textures/misc/texture-npot.html', | 427 self.Fail('conformance/textures/misc/texture-npot.html', |
| 424 ['chromeos', ('intel', 0xa011)], bug=375554) | 428 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 425 self.Fail('conformance/textures/misc/texture-npot-video.html', | 429 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 426 ['chromeos', ('intel', 0xa011)], bug=375554) | 430 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 427 self.Fail('conformance/textures/misc/texture-size.html', | 431 self.Fail('conformance/textures/misc/texture-size.html', |
| 428 ['chromeos', ('intel', 0xa011)], bug=375554) | 432 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 429 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 433 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 430 ['chromeos', ('intel', 0xa011)], bug=375554) | 434 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 431 self.Skip('conformance/uniforms/uniform-default-values.html', | 435 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 432 ['chromeos', ('intel', 0xa011)], bug=375554) | 436 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |