Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / tools / perf / benchmarks / memory.py
index 9d4a740..c01e9f6 100644 (file)
@@ -1,30 +1,32 @@
 # 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 measurements import memory
 import page_sets
+from telemetry import benchmark
 
 
-@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):
+@benchmark.Disabled('android')
+class MemoryTop25(benchmark.Benchmark):
   test = memory.Memory
   page_set = page_sets.Top25PageSet
 
 
-class Reload2012Q3(test.Test):
+@benchmark.Disabled('android')
+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