Commit 2d95506a authored by tonyg's avatar tonyg Committed by Commit bot

[Telemetry] Make memory benchmark enable/disables match old master.cfg.

BUG=388885

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

Cr-Commit-Position: refs/heads/master@{#295850}
parent 7cca8293
......@@ -7,25 +7,26 @@ import page_sets
from telemetry import benchmark
@benchmark.Enabled('android')
class MemoryMobile(benchmark.Benchmark):
test = memory.Memory
page_set = page_sets.MobileMemoryPageSet
@benchmark.Disabled('android')
@benchmark.Disabled
class MemoryTop25(benchmark.Benchmark):
test = memory.Memory
page_set = page_sets.Top25PageSet
@benchmark.Disabled('android')
@benchmark.Disabled
class Reload2012Q3(benchmark.Benchmark):
tag = 'reload'
test = memory.Memory
page_set = page_sets.Top2012Q3PageSet
@benchmark.Disabled('android') # crbug.com/371153
@benchmark.Disabled # crbug.com/371153
class MemoryToughDomMemoryCases(benchmark.Benchmark):
test = memory.Memory
page_set = page_sets.ToughDomMemoryCasesPageSet
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