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

Unified Diff: content/test/gpu/page_sets/gpu_process_tests.py

Issue 2153373002: On Linux rework driver_version/vendor extraction from gl version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Just rebase 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | gpu/config/gpu_info_collector_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/page_sets/gpu_process_tests.py
diff --git a/content/test/gpu/page_sets/gpu_process_tests.py b/content/test/gpu/page_sets/gpu_process_tests.py
index 87fa7e5136ec0845dcf02fe27de234f696822cd6..dbe8bebf270c8b0cf5c35e4f08529b5724f2308d 100644
--- a/content/test/gpu/page_sets/gpu_process_tests.py
+++ b/content/test/gpu/page_sets/gpu_process_tests.py
@@ -219,7 +219,7 @@ class SoftwareGpuProcessSharedPageState(GpuProcessSharedPageState):
options.AppendExtraBrowserArgs('--gpu-testing-device-id=0x0de1')
options.AppendExtraBrowserArgs('--gpu-testing-gl-vendor=VMware')
options.AppendExtraBrowserArgs('--gpu-testing-gl-renderer=SVGA3D')
- options.AppendExtraBrowserArgs('--gpu-testing-gl-version="2.1 Mesa 10.1"')
+ options.AppendExtraBrowserArgs('--gpu-testing-gl-version=2.1 Mesa 10.1')
class SoftwareGpuProcessPage(gpu_test_base.PageBase):
@@ -297,12 +297,11 @@ class DriverBugWorkaroundsUponGLRendererShared(GpuProcessSharedPageState):
options.AppendExtraBrowserArgs('--gpu-testing-gl-version=OpenGL ES 2.0 ' \
'(ANGLE 2.1.0.0c0d8006a9dd)')
elif sys.platform.startswith('linux'):
- # Hit id 153 from kGpuDriverBugListJson.
+ # Hit id 40 from kGpuDriverBugListJson.
options.AppendExtraBrowserArgs('--gpu-testing-vendor-id=0x0101')
options.AppendExtraBrowserArgs('--gpu-testing-device-id=0x0102')
- options.AppendExtraBrowserArgs('--gpu-testing-gl-vendor=Vivante ' \
- 'Corporation')
- options.AppendExtraBrowserArgs('--gpu-testing-gl-renderer=Vivante GC1000')
+ options.AppendExtraBrowserArgs('--gpu-testing-gl-vendor=ARM')
+ options.AppendExtraBrowserArgs('--gpu-testing-gl-renderer=Mali-400 MP')
elif sys.platform == 'darwin':
# Currently on osx no workaround relies on gl-renderer.
pass
@@ -317,7 +316,7 @@ class DriverBugWorkaroundsUponGLRendererPage(DriverBugWorkaroundsTestsPage):
self.expected_workaround = "texsubimage_faster_than_teximage"
self.unexpected_workaround = "disable_d3d11"
elif sys.platform.startswith('linux'):
- self.expected_workaround = "disable_transparent_visuals"
+ self.expected_workaround = "disable_discard_framebuffer"
elif sys.platform == 'darwin':
pass
super(DriverBugWorkaroundsUponGLRendererPage, self).__init__(
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | gpu/config/gpu_info_collector_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698