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: tools/perf/benchmarks/media.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 | « no previous file | tools/perf/page_sets/tough_video_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/media.py
diff --git a/tools/perf/benchmarks/media.py b/tools/perf/benchmarks/media.py
index d75b89cf031fd2f49d3c07623f43ea731213dc05..ba84e82925544823d0ea6f32492f2af4375bbbc7 100644
--- a/tools/perf/benchmarks/media.py
+++ b/tools/perf/benchmarks/media.py
@@ -39,6 +39,7 @@ class _MSEMeasurement(page_test.PageTest):
# xp: crbug.com/475191
# win8: crbug.com/531618
# win7: crbug.com/555079
+# crbug.com/565180: Only include cases that report time_to_play
@benchmark.Disabled('android', 'xp', 'win8', 'win7')
class Media(perf_benchmark.PerfBenchmark):
"""Obtains media metrics for key user scenarios."""
@@ -49,6 +50,17 @@ class Media(perf_benchmark.PerfBenchmark):
def Name(cls):
return 'media.tough_video_cases'
+# crbug.com/565180: Only include cases that don't report time_to_play
+@benchmark.Disabled('android', 'xp', 'win8', 'win7')
+class MediaExtra(perf_benchmark.PerfBenchmark):
+ """Obtains extra media metrics for key user scenarios."""
+ test = media.Media
+ page_set = page_sets.ToughVideoCasesExtraPageSet
+
+ @classmethod
+ def Name(cls):
+ return 'media.tough_video_cases_extra'
+
@benchmark.Disabled('android', 'mac', 'xp')
class MediaNetworkSimulation(perf_benchmark.PerfBenchmark):
« no previous file with comments | « no previous file | tools/perf/page_sets/tough_video_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698