| Index: tools/perf/benchmarks/memory.py
|
| diff --git a/tools/perf/benchmarks/memory.py b/tools/perf/benchmarks/memory.py
|
| index 90752a77d21ba85ad3b7d4db9801e17ff2f24767..c01e9f6c73d9bdb592f6940e7044ef2ab6581999 100644
|
| --- a/tools/perf/benchmarks/memory.py
|
| +++ b/tools/perf/benchmarks/memory.py
|
| @@ -1,10 +1,10 @@
|
| # Copyright 2013 The Chromium Authors. All rights reserved.
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
| -from telemetry import benchmark
|
|
|
| from measurements import memory
|
| import page_sets
|
| +from telemetry import benchmark
|
|
|
|
|
| @benchmark.Disabled('android') # crbug.com/370977
|
| @@ -13,11 +13,13 @@ class MemoryMobile(benchmark.Benchmark):
|
| page_set = page_sets.MobileMemoryPageSet
|
|
|
|
|
| +@benchmark.Disabled('android')
|
| class MemoryTop25(benchmark.Benchmark):
|
| test = memory.Memory
|
| page_set = page_sets.Top25PageSet
|
|
|
|
|
| +@benchmark.Disabled('android')
|
| class Reload2012Q3(benchmark.Benchmark):
|
| tag = 'reload'
|
| test = memory.Memory
|
|
|