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

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

Issue 1977953002: Prevent skip_gpu_process from running on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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 b227fbe42f6c4519aea091ee8396f18094507ac6..441558277498b7c51e5201e9c0e9c1402422950c 100644
--- a/content/test/gpu/page_sets/gpu_process_tests.py
+++ b/content/test/gpu/page_sets/gpu_process_tests.py
@@ -502,7 +502,7 @@ class GpuProcessTestsStorySet(story_set_module.StorySet):
""" Tests that accelerated content triggers the creation of a GPU process """
- def __init__(self, expectations):
+ def __init__(self, expectations, is_platform_android):
super(GpuProcessTestsStorySet, self).__init__(
serving_dirs=set(['../../../../content/test/data']))
@@ -522,8 +522,8 @@ class GpuProcessTestsStorySet(story_set_module.StorySet):
self.AddStory(GpuInfoCompletePage(self, expectations))
self.AddStory(NoGpuProcessPage(self, expectations))
self.AddStory(SoftwareGpuProcessPage(self, expectations))
- #TODO(cblume): no good way to skip this test. crbug.com/611629
- #self.AddStory(SkipGpuProcessPage(self, expectations))
+ if not is_platform_android:
+ self.AddStory(SkipGpuProcessPage(self, expectations))
self.AddStory(DriverBugWorkaroundsInGpuProcessPage(self, expectations))
self.AddStory(IdentifyActiveGpuPage1(self, expectations))
self.AddStory(IdentifyActiveGpuPage2(self, expectations))
« content/test/gpu/gpu_tests/gpu_process.py ('K') | « content/test/gpu/gpu_tests/gpu_process.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698