| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 self.Fail('deqp/data/gles2/shaders/constants.html', | 223 self.Fail('deqp/data/gles2/shaders/constants.html', |
| 224 ['android'], bug=478572) | 224 ['android'], bug=478572) |
| 225 self.Fail('deqp/data/gles2/shaders/conversions.html', | 225 self.Fail('deqp/data/gles2/shaders/conversions.html', |
| 226 ['android'], bug=478572) | 226 ['android'], bug=478572) |
| 227 self.Fail('deqp/data/gles2/shaders/declarations.html', | 227 self.Fail('deqp/data/gles2/shaders/declarations.html', |
| 228 ['android'], bug=478572) | 228 ['android'], bug=478572) |
| 229 self.Fail('deqp/data/gles2/shaders/linkage.html', | 229 self.Fail('deqp/data/gles2/shaders/linkage.html', |
| 230 ['android'], bug=478572) | 230 ['android'], bug=478572) |
| 231 self.Fail('conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html', | 231 self.Fail('conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html', |
| 232 ['android'], bug=586183) | 232 ['android'], bug=586183) |
| 233 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 234 ['android', 'android-content-shell'], bug=601110) |
| 235 self.Fail('conformance/textures/video/*', |
| 236 ['android'], bug=601110) |
| 233 # The following tests timed out on android, so skip them for now. | 237 # The following tests timed out on android, so skip them for now. |
| 234 self.Skip('conformance/textures/image_bitmap_from_video/*', | 238 self.Skip('conformance/textures/image_bitmap_from_video/*', |
| 235 ['android'], bug=585108) | 239 ['android'], bug=585108) |
| 236 # The following WebView crashes are causing problems with further | 240 # The following WebView crashes are causing problems with further |
| 237 # tests in the suite, so skip them for now. | 241 # tests in the suite, so skip them for now. |
| 238 self.Skip('conformance/textures/video/' + | 242 self.Skip('conformance/textures/video/' + |
| 239 'tex-2d-rgb-rgb-unsigned_byte.html', | 243 'tex-2d-rgb-rgb-unsigned_byte.html', |
| 240 ['android', 'android-webview-shell'], bug=352645) | 244 ['android', 'android-webview-shell'], bug=352645) |
| 241 self.Skip('conformance/textures/video/' + | 245 self.Skip('conformance/textures/video/' + |
| 242 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', | 246 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 self.Fail('conformance/textures/misc/texture-npot.html', | 421 self.Fail('conformance/textures/misc/texture-npot.html', |
| 418 ['chromeos', ('intel', 0xa011)], bug=375554) | 422 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 419 self.Fail('conformance/textures/misc/texture-npot-video.html', | 423 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 420 ['chromeos', ('intel', 0xa011)], bug=375554) | 424 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 421 self.Fail('conformance/textures/misc/texture-size.html', | 425 self.Fail('conformance/textures/misc/texture-size.html', |
| 422 ['chromeos', ('intel', 0xa011)], bug=375554) | 426 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 423 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 427 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 424 ['chromeos', ('intel', 0xa011)], bug=375554) | 428 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 425 self.Skip('conformance/uniforms/uniform-default-values.html', | 429 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 426 ['chromeos', ('intel', 0xa011)], bug=375554) | 430 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |