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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 ['android', 'qualcomm'], bug=499555) | 339 ['android', 'qualcomm'], bug=499555) |
340 # This crashes in Android WebView on the Nexus 6, preventing the | 340 # This crashes in Android WebView on the Nexus 6, preventing the |
341 # suite from running further. Rather than add multiple | 341 # suite from running further. Rather than add multiple |
342 # suppressions, skip it until it's passing at least in content | 342 # suppressions, skip it until it's passing at least in content |
343 # shell. | 343 # shell. |
344 self.Skip('conformance/extensions/oes-texture-float-with-video.html', | 344 self.Skip('conformance/extensions/oes-texture-float-with-video.html', |
345 ['android', 'qualcomm'], bug=499555) | 345 ['android', 'qualcomm'], bug=499555) |
346 # Nexus 5 failures | 346 # Nexus 5 failures |
347 self.Fail('conformance/glsl/bugs/struct-constructor-highp-bug.html', | 347 self.Fail('conformance/glsl/bugs/struct-constructor-highp-bug.html', |
348 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=559342) | 348 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=559342) |
| 349 self.Fail('conformance/glsl/bugs/qualcomm-loop-with-continue-crash.html', |
| 350 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=527761) |
| 351 self.Fail('conformance/glsl/bugs/sketchfab-lighting-shader-crash.html', |
| 352 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=551937) |
349 # Nexus 6 failures only | 353 # Nexus 6 failures only |
350 self.Fail('conformance/context/' + | 354 self.Fail('conformance/context/' + |
351 'context-attributes-alpha-depth-stencil-antialias.html', | 355 'context-attributes-alpha-depth-stencil-antialias.html', |
352 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 356 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
353 self.Fail('conformance/context/premultiplyalpha-test.html', | 357 self.Fail('conformance/context/premultiplyalpha-test.html', |
354 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 358 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
355 self.Fail('conformance/extensions/oes-texture-float-with-image-data.html', | 359 self.Fail('conformance/extensions/oes-texture-float-with-image-data.html', |
356 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 360 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
357 self.Fail('conformance/extensions/oes-texture-float-with-image.html', | 361 self.Fail('conformance/extensions/oes-texture-float-with-image.html', |
358 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 362 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 self.Fail('conformance/textures/misc/texture-npot.html', | 489 self.Fail('conformance/textures/misc/texture-npot.html', |
486 ['chromeos', ('intel', 0xa011)], bug=375554) | 490 ['chromeos', ('intel', 0xa011)], bug=375554) |
487 self.Fail('conformance/textures/misc/texture-npot-video.html', | 491 self.Fail('conformance/textures/misc/texture-npot-video.html', |
488 ['chromeos', ('intel', 0xa011)], bug=375554) | 492 ['chromeos', ('intel', 0xa011)], bug=375554) |
489 self.Fail('conformance/textures/misc/texture-size.html', | 493 self.Fail('conformance/textures/misc/texture-size.html', |
490 ['chromeos', ('intel', 0xa011)], bug=375554) | 494 ['chromeos', ('intel', 0xa011)], bug=375554) |
491 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 495 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
492 ['chromeos', ('intel', 0xa011)], bug=375554) | 496 ['chromeos', ('intel', 0xa011)], bug=375554) |
493 self.Skip('conformance/uniforms/uniform-default-values.html', | 497 self.Skip('conformance/uniforms/uniform-default-values.html', |
494 ['chromeos', ('intel', 0xa011)], bug=375554) | 498 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |