Commit 39bb3fce authored by Sadrul Habib Chowdhury's avatar Sadrul Habib Chowdhury Committed by Commit Bot

cluster telemetry: Replace smoothness with rendering benchmark.

rendering benchmark is the new benchmark we are going to focus on, and
smoothness benchmark is going to be removed. So update cluster telemetry
to run the rendering benchmark instead.

BUG=760553

Change-Id: Ief60f9e12d2b0ad3776fe1d2beffd999e4784f51
Reviewed-on: https://chromium-review.googlesource.com/1103852Reviewed-by: default avatarNed Nguyen <nednguyen@google.com>
Reviewed-by: default avatarRavi Mistry <rmistry@chromium.org>
Reviewed-by: default avatarSadrul Chowdhury <sadrul@chromium.org>
Commit-Queue: Sadrul Chowdhury <sadrul@chromium.org>
Cr-Commit-Position: refs/heads/master@{#568025}
parent 76904d16
......@@ -6,7 +6,7 @@ from contrib.cluster_telemetry import ct_benchmarks_util
from contrib.cluster_telemetry import page_set
from core import perf_benchmark
from measurements import smoothness
from measurements import rendering
def ScrollToEndOfPage(action_runner):
action_runner.Wait(1)
......@@ -14,16 +14,16 @@ def ScrollToEndOfPage(action_runner):
action_runner.ScrollPage()
class SmoothnessCT(perf_benchmark.PerfBenchmark):
"""Measures smoothness performance for Cluster Telemetry."""
class RenderingCT(perf_benchmark.PerfBenchmark):
"""Measures rendering performance for Cluster Telemetry."""
options = {'upload_results': True}
test = smoothness.Smoothness
test = rendering.Rendering
@classmethod
def Name(cls):
return 'smoothness_ct'
return 'rendering.cluster_telemetry'
@classmethod
def AddBenchmarkCommandLineArgs(cls, parser):
......
......@@ -22,7 +22,7 @@ def GetAllStorySets():
'analysis_metrics_ct',
'skpicture_printer_ct',
'screenshot_ct',
'smoothness_ct',
'rendering.cluster_telemetry',
'repaint_ct',
'rasterize_and_record_micro_ct',
'multipage_skpicture_printer_ct',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment