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

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

Issue 2230803003: Revert of Fix a few gpu tests on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/test/gpu/gpu_tests/gpu_process_expectations.py ('k') | gpu/config/gpu_info_collector_android.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 29689637a86bc1ffa8047636b0bfa450a5214708..87fa7e5136ec0845dcf02fe27de234f696822cd6 100644
--- a/content/test/gpu/page_sets/gpu_process_tests.py
+++ b/content/test/gpu/page_sets/gpu_process_tests.py
@@ -174,11 +174,7 @@
test, finder_options, story_set)
options = finder_options.browser_options
- if options.browser_type.startswith('android'):
- # There is currently no entry in kSoftwareRenderingListJson that disables
- # all gpu features on Android.
- pass
- elif sys.platform in ('cygwin', 'win32'):
+ if sys.platform in ('cygwin', 'win32'):
# Hit id 34 from kSoftwareRenderingListJson.
options.AppendExtraBrowserArgs('--gpu-testing-vendor-id=0x5333')
options.AppendExtraBrowserArgs('--gpu-testing-device-id=0x8811')
@@ -199,19 +195,15 @@
class NoGpuProcessPage(gpu_test_base.PageBase):
- def __init__(self, story_set, expectations, is_platform_android):
+ def __init__(self, story_set, expectations):
super(NoGpuProcessPage, self).__init__(
url='about:blank',
name='GpuProcess.no_gpu_process',
page_set=story_set,
shared_page_state_class=NoGpuProcessSharedPageState,
expectations=expectations)
- self.is_platform_android = is_platform_android
-
- def Validate(self, tab, results):
- if self.is_platform_android:
- return
-
+
+ def Validate(self, tab, results):
has_gpu_process_js = 'chrome.gpuBenchmarking.hasGpuProcess()'
has_gpu_process = tab.EvaluateJavaScript(has_gpu_process_js)
if has_gpu_process:
@@ -294,11 +286,7 @@
super(DriverBugWorkaroundsUponGLRendererShared, self).__init__(
test, finder_options, story_set)
options = finder_options.browser_options
- if options.browser_type.startswith('android'):
- # Hit id 108 from kGpuDriverBugListJson.
- options.AppendExtraBrowserArgs('--gpu-testing-gl-vendor=ARM')
- options.AppendExtraBrowserArgs('--gpu-testing-gl-renderer=Mali-400')
- elif sys.platform in ('cygwin', 'win32'):
+ if sys.platform in ('cygwin', 'win32'):
# Hit id 51 and 87 from kGpuDriverBugListJson.
options.AppendExtraBrowserArgs('--gpu-testing-vendor-id=0x1002')
options.AppendExtraBrowserArgs('--gpu-testing-device-id=0x6779')
@@ -321,13 +309,11 @@
class DriverBugWorkaroundsUponGLRendererPage(DriverBugWorkaroundsTestsPage):
- def __init__(self, story_set, expectations, is_platform_android):
+ def __init__(self, story_set, expectations):
self.expected_workaround = None
self.unexpected_workaround = None
- if is_platform_android:
- self.expected_workaround = "disable_gl_rgb_format"
- elif sys.platform in ('cygwin', 'win32'):
+ if sys.platform in ('cygwin', 'win32'):
self.expected_workaround = "texsubimage_faster_than_teximage"
self.unexpected_workaround = "disable_d3d11"
elif sys.platform.startswith('linux'):
@@ -486,17 +472,16 @@
options.AppendExtraBrowserArgs('--gpu-testing-gl-version="3.0 Mesa 11.2"')
class ReadbackWebGLGpuProcessPage(gpu_test_base.PageBase):
- def __init__(self, story_set, expectations, is_platform_android):
+ def __init__(self, story_set, expectations):
super(ReadbackWebGLGpuProcessPage, self).__init__(
url='chrome:gpu',
name='GpuProcess.readback_webgl_gpu_process',
page_set=story_set,
shared_page_state_class=ReadbackWebGLGpuProcessSharedPageState,
expectations=expectations)
- self.is_platform_android = is_platform_android
-
- def Validate(self, tab, results):
- if sys.platform.startswith('linux') and not self.is_platform_android:
+
+ def Validate(self, tab, results):
+ if sys.platform.startswith('linux'):
feature_status_js = 'browserBridge.gpuInfo.featureStatus.featureStatus'
feature_status_list = tab.EvaluateJavaScript(feature_status_js)
result = True
@@ -607,13 +592,15 @@
self.AddStory(FunctionalVideoPage(self, expectations))
self.AddStory(GpuInfoCompletePage(self, expectations))
- self.AddStory(NoGpuProcessPage(self, expectations, is_platform_android))
+ self.AddStory(NoGpuProcessPage(self, expectations))
self.AddStory(SoftwareGpuProcessPage(self, expectations))
self.AddStory(DriverBugWorkaroundsInGpuProcessPage(self, expectations))
- self.AddStory(ReadbackWebGLGpuProcessPage(self, expectations,
- is_platform_android))
- self.AddStory(DriverBugWorkaroundsUponGLRendererPage(self, expectations,
- is_platform_android))
+ self.AddStory(IdentifyActiveGpuPage1(self, expectations))
+ self.AddStory(IdentifyActiveGpuPage2(self, expectations))
+ self.AddStory(IdentifyActiveGpuPage3(self, expectations))
+ self.AddStory(IdentifyActiveGpuPage4(self, expectations))
+ self.AddStory(ReadbackWebGLGpuProcessPage(self, expectations))
+ self.AddStory(DriverBugWorkaroundsUponGLRendererPage(self, expectations))
self.AddStory(EqualBugWorkaroundsInBrowserAndGpuProcessPage(self,
expectations))
if not is_platform_android:
@@ -621,13 +608,6 @@
self.AddStory(HasTransparentVisualsGpuProcessPage(self, expectations))
self.AddStory(NoTransparentVisualsGpuProcessPage(self, expectations))
- # There is no Android multi-gpu configuration and the helper
- # gpu_info_collector.cc::IdentifyActiveGPU is not even called.
- self.AddStory(IdentifyActiveGpuPage1(self, expectations))
- self.AddStory(IdentifyActiveGpuPage2(self, expectations))
- self.AddStory(IdentifyActiveGpuPage3(self, expectations))
- self.AddStory(IdentifyActiveGpuPage4(self, expectations))
-
@property
def allow_mixed_story_states(self):
# Return True here in order to be able to run pages with different browser
« no previous file with comments | « content/test/gpu/gpu_tests/gpu_process_expectations.py ('k') | gpu/config/gpu_info_collector_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698