summaryrefslogtreecommitdiffstats
path: root/tools/perf/benchmarks/memory.py
blob: 4eaffe0f6dcf0057087582768e8b2fe5d9b98a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright (c) 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


class MemoryMobile(test.Test):
  test = memory.Memory
  page_set = 'page_sets/mobile_memory.json'


class MemoryTop25(test.Test):
  test = memory.Memory
  page_set = 'page_sets/top_25.json'


class Reload2012Q3(test.Test):
  tag = 'reload'
  test = memory.Memory
  page_set = 'page_sets/2012Q3.json'