Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(259)

Side by Side Diff: content/test/gpu/gpu_tests/webgl_conformance_expectations.py

Issue 2831533002: Try to remove some flaky WebGL CTS failures (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 'gl-bind-attrib-location-long-names-test.html', 449 'gl-bind-attrib-location-long-names-test.html',
450 ['mac', ('nvidia', 0xfe9)], bug=635081) 450 ['mac', ('nvidia', 0xfe9)], bug=635081)
451 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', 451 self.Fail('conformance/programs/gl-bind-attrib-location-test.html',
452 ['mac', ('nvidia', 0xfe9)], bug=635081) 452 ['mac', ('nvidia', 0xfe9)], bug=635081)
453 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', 453 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html',
454 ['mac', ('nvidia', 0xfe9), 'no_passthrough'], bug=635081) 454 ['mac', ('nvidia', 0xfe9), 'no_passthrough'], bug=635081)
455 self.Fail('conformance/textures/misc/tex-input-validation.html', 455 self.Fail('conformance/textures/misc/tex-input-validation.html',
456 ['mac', ('nvidia', 0xfe9)], bug=635081) 456 ['mac', ('nvidia', 0xfe9)], bug=635081)
457 457
458 # Linux failures 458 # Linux failures
459 self.Flaky('conformance/textures/video/' +
460 'tex-2d-rgba-rgba-unsigned_byte.html',
461 ['linux', 'no_passthrough'], bug=627525)
462 self.Flaky('conformance/textures/video/' +
463 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html',
464 ['linux', 'no_passthrough'], bug=627525)
465 self.Flaky('conformance/textures/video/' +
466 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html',
467 ['linux', 'no_passthrough'], bug=627525)
468 self.Flaky('conformance/textures/video/' +
469 'tex-2d-rgb-rgb-unsigned_byte.html',
470 ['linux', 'no_passthrough'], bug=627525)
471 self.Flaky('conformance/textures/video/' +
472 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html',
473 ['linux', 'no_passthrough'], bug=627525)
474 self.Fail('conformance/extensions/webgl-compressed-texture-astc.html', 459 self.Fail('conformance/extensions/webgl-compressed-texture-astc.html',
475 ['linux', 'intel'], bug=680675) 460 ['linux', 'intel'], bug=680675)
476 461
477 # NVIDIA 462 # NVIDIA
478 self.Flaky('conformance/extensions/oes-element-index-uint.html', 463 self.Flaky('conformance/extensions/oes-element-index-uint.html',
479 ['linux', 'nvidia', 'no_passthrough'], bug=524144) 464 ['linux', 'nvidia', 'no_passthrough'], bug=524144)
480 self.Flaky('conformance/textures/image/' + 465 self.Flaky('conformance/textures/image/' +
481 'tex-2d-rgb-rgb-unsigned_byte.html', 466 'tex-2d-rgb-rgb-unsigned_byte.html',
482 ['linux', 'nvidia'], bug=596622) 467 ['linux', 'nvidia'], bug=596622)
483 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', 468 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html',
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 self.Fail('conformance/textures/misc/texture-npot.html', 780 self.Fail('conformance/textures/misc/texture-npot.html',
796 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) 781 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554)
797 self.Fail('conformance/textures/misc/texture-npot-video.html', 782 self.Fail('conformance/textures/misc/texture-npot-video.html',
798 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) 783 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554)
799 self.Fail('conformance/textures/misc/texture-size.html', 784 self.Fail('conformance/textures/misc/texture-size.html',
800 ['chromeos', ('intel', 0xa011)], bug=375554) 785 ['chromeos', ('intel', 0xa011)], bug=375554)
801 self.Fail('conformance/uniforms/gl-uniform-arrays.html', 786 self.Fail('conformance/uniforms/gl-uniform-arrays.html',
802 ['chromeos', ('intel', 0xa011)], bug=375554) 787 ['chromeos', ('intel', 0xa011)], bug=375554)
803 self.Skip('conformance/uniforms/uniform-default-values.html', 788 self.Skip('conformance/uniforms/uniform-default-values.html',
804 ['chromeos', ('intel', 0xa011)], bug=375554) 789 ['chromeos', ('intel', 0xa011)], bug=375554)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698