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

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

Issue 337603005: Rename telemetry.test.Test to telemetry.benchmark.Benchmark. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « tools/perf/benchmarks/media.py ('k') | tools/perf/benchmarks/memory_pressure.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/memory.py
diff --git a/tools/perf/benchmarks/memory.py b/tools/perf/benchmarks/memory.py
index 9d4a7401ec8ee414f2d7c91479c4876e3decef6f..90752a77d21ba85ad3b7d4db9801e17ff2f24767 100644
--- a/tools/perf/benchmarks/memory.py
+++ b/tools/perf/benchmarks/memory.py
@@ -1,30 +1,30 @@
# 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 test
+from telemetry import benchmark
from measurements import memory
import page_sets
-@test.Disabled('android') # crbug.com/370977
-class MemoryMobile(test.Test):
+@benchmark.Disabled('android') # crbug.com/370977
+class MemoryMobile(benchmark.Benchmark):
test = memory.Memory
page_set = page_sets.MobileMemoryPageSet
-class MemoryTop25(test.Test):
+class MemoryTop25(benchmark.Benchmark):
test = memory.Memory
page_set = page_sets.Top25PageSet
-class Reload2012Q3(test.Test):
+class Reload2012Q3(benchmark.Benchmark):
tag = 'reload'
test = memory.Memory
page_set = page_sets.Top2012Q3PageSet
-@test.Disabled('android') # crbug.com/371153
-class MemoryToughDomMemoryCases(test.Test):
+@benchmark.Disabled('android') # crbug.com/371153
+class MemoryToughDomMemoryCases(benchmark.Benchmark):
test = memory.Memory
page_set = page_sets.ToughDomMemoryCasesPageSet
« no previous file with comments | « tools/perf/benchmarks/media.py ('k') | tools/perf/benchmarks/memory_pressure.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698