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

Unified Diff: tools/perf/benchmarks/rasterize_and_record_micro.py

Issue 2876073003: Migrate cluster telemetry benchmarks to tools/perf/contrib/cluster_telemetry/ (Closed)
Patch Set: Remove BENCHMARKS_BLACK_LIST Created 3 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: tools/perf/benchmarks/rasterize_and_record_micro.py
diff --git a/tools/perf/benchmarks/rasterize_and_record_micro.py b/tools/perf/benchmarks/rasterize_and_record_micro.py
index 5c4bf6c085e899e673b26583975c4f97b835b5be..92a6d35bfaadd740095be3ac9677f57e0533c007 100644
--- a/tools/perf/benchmarks/rasterize_and_record_micro.py
+++ b/tools/perf/benchmarks/rasterize_and_record_micro.py
@@ -4,10 +4,8 @@
from core import perf_benchmark
-import ct_benchmarks_util
from measurements import rasterize_and_record_micro
import page_sets
-from page_sets import repaint_helpers
from telemetry import benchmark
@@ -115,26 +113,3 @@ class RasterizeAndRecordMicroPartialInvalidation(_RasterizeAndRecordMicro):
return 'rasterize_and_record_micro.partial_invalidation'
-# Disabled because we do not plan on running CT benchmarks on the perf
-# waterfall any time soon.
-@benchmark.Disabled('all')
-class RasterizeAndRecordMicroCT(_RasterizeAndRecordMicro):
- """Measures rasterize and record performance for Cluster Telemetry."""
-
- @classmethod
- def Name(cls):
- return 'rasterize_and_record_micro_ct'
-
- @classmethod
- def AddBenchmarkCommandLineArgs(cls, parser):
- _RasterizeAndRecordMicro.AddBenchmarkCommandLineArgs(parser)
- ct_benchmarks_util.AddBenchmarkCommandLineArgs(parser)
-
- @classmethod
- def ProcessCommandLineArgs(cls, parser, args):
- ct_benchmarks_util.ValidateCommandLineArgs(parser, args)
-
- def CreateStorySet(self, options):
- return page_sets.CTPageSet(
- options.urls_list, options.user_agent, options.archive_data_file,
- run_page_interaction_callback=repaint_helpers.WaitThenRepaint)

Powered by Google App Engine
This is Rietveld 408576698