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

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

Issue 2225043002: Supress failing WebGL2 fbomultisample tests on Linux Intel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix vendor typo Created 4 years, 4 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) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2015 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 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation s 4 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation s
5 5
6 # See the GpuTestExpectations class for documentation. 6 # See the GpuTestExpectations class for documentation.
7 7
8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations):
9 def __init__(self, conformance_path): 9 def __init__(self, conformance_path):
10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path)
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 self.Fail('deqp/functional/gles3/framebufferblit/conversion_34.html', 576 self.Fail('deqp/functional/gles3/framebufferblit/conversion_34.html',
577 ['linux', 'intel'], bug=598902) 577 ['linux', 'intel'], bug=598902)
578 self.Fail('deqp/functional/gles3/framebufferblit/' + 578 self.Fail('deqp/functional/gles3/framebufferblit/' +
579 'default_framebuffer_00.html', 579 'default_framebuffer_00.html',
580 ['linux', 'intel'], bug=598902) 580 ['linux', 'intel'], bug=598902)
581 self.Fail('deqp/functional/gles3/framebufferblit/rect_02.html', 581 self.Fail('deqp/functional/gles3/framebufferblit/rect_02.html',
582 ['linux', 'intel'], bug=598902) 582 ['linux', 'intel'], bug=598902)
583 583
584 # Linux Intel with ANGLE only 584 # Linux Intel with ANGLE only
585 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', 585 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html',
586 ['linux', 'nvidia', 'opengl'], bug=635528) 586 ['linux', 'intel', 'opengl'], bug=635528)
yunchao 2016/08/08 15:08:48 This is a mesa bug for multisampled float point re
587 self.Fail('deqp/functional/gles3/fragmentoutput/*.html', 587 self.Fail('deqp/functional/gles3/fragmentoutput/*.html',
588 ['linux', 'intel', 'opengl'], bug=598902) 588 ['linux', 'intel', 'opengl'], bug=598902)
589 589
590 # Linux Intel without ANGLE only 590 # Linux Intel without ANGLE only
591 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', 591 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html',
592 ['linux', 'intel', 'no_angle'], bug=598902) 592 ['linux', 'intel', 'no_angle'], bug=598902)
593 593
594 # Linux AMD only. 594 # Linux AMD only.
595 # It looks like AMD shader compiler rejects many valid ES3 semantics. 595 # It looks like AMD shader compiler rejects many valid ES3 semantics.
596 self.Fail('deqp/data/gles3/shaders/conversions.html', 596 self.Fail('deqp/data/gles3/shaders/conversions.html',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 # self.Fail(page_name, 854 # self.Fail(page_name,
855 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 855 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
856 # self.Fail(page_name, 856 # self.Fail(page_name,
857 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 857 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
858 858
859 # Conflicts if between a generic os condition and a specific version 859 # Conflicts if between a generic os condition and a specific version
860 # self.Fail(page_name, 860 # self.Fail(page_name,
861 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 861 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
862 # self.Fail(page_name, 862 # self.Fail(page_name,
863 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 863 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
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