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

Unified Diff: tools/perf/page_sets/tough_video_cases.py

Issue 1612333002: Add media.tough_video_cases_reduced (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Factor out seldom used cases into media.tough_video_cases_extra Created 4 years, 11 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 | « tools/perf/benchmarks/media.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/tough_video_cases.py
diff --git a/tools/perf/page_sets/tough_video_cases.py b/tools/perf/page_sets/tough_video_cases.py
index 6ed0d1654c804491a6cfe19a6d97a933480d64d2..7898ad102846de9f4f00017d71a722fdde2c6be4 100644
--- a/tools/perf/page_sets/tough_video_cases.py
+++ b/tools/perf/page_sets/tough_video_cases.py
@@ -549,7 +549,7 @@ class Page40(ToughVideoCasesPage):
class ToughVideoCasesPageSet(story.StorySet):
"""
- Description: Video Stack Perf benchmark
+ Description: Video Stack Perf benchmark that report time_to_play.
"""
def __init__(self):
super(ToughVideoCasesPageSet, self).__init__(
@@ -573,6 +573,24 @@ class ToughVideoCasesPageSet(story.StorySet):
self.AddStory(Page16(self))
self.AddStory(Page17(self))
self.AddStory(Page18(self))
+ self.AddStory(Page30(self))
+ self.AddStory(Page32(self))
+ self.AddStory(Page34(self))
+ self.AddStory(Page36(self))
+ self.AddStory(Page37(self))
+ self.AddStory(Page38(self))
+ self.AddStory(Page39(self))
+ self.AddStory(Page40(self))
+
+
+class ToughVideoCasesExtraPageSet(story.StorySet):
+ """
+ Description: Video Stack Perf benchmark that don't report time_to_play.
+ """
+ def __init__(self):
+ super(ToughVideoCasesExtraPageSet, self).__init__(
+ cloud_storage_bucket=story.PARTNER_BUCKET)
+
self.AddStory(Page19(self))
self.AddStory(Page20(self))
self.AddStory(Page21(self))
@@ -584,14 +602,6 @@ class ToughVideoCasesPageSet(story.StorySet):
self.AddStory(Page27(self))
self.AddStory(Page28(self))
self.AddStory(Page29(self))
- self.AddStory(Page30(self))
self.AddStory(Page31(self))
- self.AddStory(Page32(self))
self.AddStory(Page33(self))
- self.AddStory(Page34(self))
self.AddStory(Page35(self))
- self.AddStory(Page36(self))
- self.AddStory(Page37(self))
- self.AddStory(Page38(self))
- self.AddStory(Page39(self))
- self.AddStory(Page40(self))
« no previous file with comments | « tools/perf/benchmarks/media.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698