1# Copyright 2013 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5from telemetry import test
6from measurements import memory_pressure
7
8class MemoryPressure(test.Test):
9  test = memory_pressure.MemoryPressure
10  page_set = 'page_sets/typical_25.json'
11  options = {'cold': True,
12             'pageset_repeat_iters': 6}
13