Commit 2de852f2 authored by peria's avatar peria Committed by Commit bot

Add following pages in Oilpan performance page sets

- key_silk_cases (disabled)
- sync_scroll.key_mobile_sites (enabled on Android)

Disabled/Enabled attributes are added referring Smoothness test.

BUG=438074

Review URL: https://codereview.chromium.org/791923002

Cr-Commit-Position: refs/heads/master@{#308058}
parent 99bcfb1b
...@@ -8,7 +8,6 @@ import page_sets ...@@ -8,7 +8,6 @@ import page_sets
from benchmarks import blink_perf from benchmarks import blink_perf
from benchmarks import silk_flags from benchmarks import silk_flags
from measurements import oilpan_gc_times from measurements import oilpan_gc_times
from measurements import smoothness
from telemetry import benchmark from telemetry import benchmark
from telemetry.core import util from telemetry.core import util
from telemetry import page from telemetry import page
...@@ -38,5 +37,16 @@ class OilpanGCTimesSmoothnessAnimation(benchmark.Benchmark): ...@@ -38,5 +37,16 @@ class OilpanGCTimesSmoothnessAnimation(benchmark.Benchmark):
page_set = page_sets.ToughAnimationCasesPageSet page_set = page_sets.ToughAnimationCasesPageSet
# TODO(peria): Add more page sets. 'key_silk_cases' and @benchmark.Enabled('android')
# 'smoothness.sync_scroll.key_mobile_sites' are wanted for now. class OilpanGCTimesKeySilkCases(benchmark.Benchmark):
test = oilpan_gc_times.OilpanGCTimesForSmoothness
page_set = page_sets.KeySilkCasesPageSet
@benchmark.Enabled('android')
class OilpanGCTimesSyncScrollKeyMobileSites(benchmark.Benchmark):
tag = 'sync_scroll'
test = oilpan_gc_times.OilpanGCTimesForSmoothness
page_set = page_sets.KeyMobileSitesPageSet
def CustomizeBrowserOptions(self, options):
silk_flags.CustomizeBrowserOptionsForSyncScrolling(options)
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