| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 ['android', 'android-webview-shell'], bug=352645) | 321 ['android', 'android-webview-shell'], bug=352645) |
| 322 self.Skip('conformance/textures/video/tex-image-and-sub-image-2d-with-' + | 322 self.Skip('conformance/textures/video/tex-image-and-sub-image-2d-with-' + |
| 323 'video-rgba-rgba-unsigned_short_5_5_5_1.html', | 323 'video-rgba-rgba-unsigned_short_5_5_5_1.html', |
| 324 ['android', 'android-webview-shell'], bug=352645) | 324 ['android', 'android-webview-shell'], bug=352645) |
| 325 self.Skip('conformance/textures/misc/texture-npot-video.html', | 325 self.Skip('conformance/textures/misc/texture-npot-video.html', |
| 326 ['android', 'android-webview-shell'], bug=352645) | 326 ['android', 'android-webview-shell'], bug=352645) |
| 327 # Recent regressions have caused these to fail on multiple devices | 327 # Recent regressions have caused these to fail on multiple devices |
| 328 self.Fail('conformance/textures/video/tex-image-and-sub-image-2d-with-' + | 328 self.Fail('conformance/textures/video/tex-image-and-sub-image-2d-with-' + |
| 329 'video-rgb-rgb-unsigned_byte.html', | 329 'video-rgb-rgb-unsigned_byte.html', |
| 330 ['android', 'android-content-shell'], bug=499555) | 330 ['android', 'android-content-shell'], bug=499555) |
| 331 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 332 ['android', 'android-content-shell'], bug=520638) |
| 331 # These are failing on the Nexus 5 and 6 | 333 # These are failing on the Nexus 5 and 6 |
| 332 self.Fail('conformance/extensions/oes-texture-float-with-canvas.html', | 334 self.Fail('conformance/extensions/oes-texture-float-with-canvas.html', |
| 333 ['android', 'qualcomm'], bug=499555) | 335 ['android', 'qualcomm'], bug=499555) |
| 334 # This crashes in Android WebView on the Nexus 6, preventing the | 336 # This crashes in Android WebView on the Nexus 6, preventing the |
| 335 # suite from running further. Rather than add multiple | 337 # suite from running further. Rather than add multiple |
| 336 # suppressions, skip it until it's passing at least in content | 338 # suppressions, skip it until it's passing at least in content |
| 337 # shell. | 339 # shell. |
| 338 self.Skip('conformance/extensions/oes-texture-float-with-video.html', | 340 self.Skip('conformance/extensions/oes-texture-float-with-video.html', |
| 339 ['android', 'qualcomm'], bug=499555) | 341 ['android', 'qualcomm'], bug=499555) |
| 340 # Nexus 6 failures only | 342 # Nexus 6 failures only |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 self.Fail('conformance/textures/misc/texture-npot.html', | 474 self.Fail('conformance/textures/misc/texture-npot.html', |
| 473 ['chromeos', ('intel', 0xa011)], bug=375554) | 475 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 474 self.Fail('conformance/textures/misc/texture-npot-video.html', | 476 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 475 ['chromeos', ('intel', 0xa011)], bug=375554) | 477 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 476 self.Fail('conformance/textures/misc/texture-size.html', | 478 self.Fail('conformance/textures/misc/texture-size.html', |
| 477 ['chromeos', ('intel', 0xa011)], bug=375554) | 479 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 478 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 480 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 479 ['chromeos', ('intel', 0xa011)], bug=375554) | 481 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 480 self.Skip('conformance/uniforms/uniform-default-values.html', | 482 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 481 ['chromeos', ('intel', 0xa011)], bug=375554) | 483 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |