• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2014 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.
4from telemetry import test
5
6from measurements import startup
7import page_sets
8
9
10@test.Disabled('snowleopard') # crbug.com/336913
11class StartWithUrlCold(test.Test):
12  """Measure time to start Chrome cold with startup URLs"""
13  tag = 'cold'
14  test = startup.StartWithUrl
15  page_set = page_sets.StartupPagesPageSet
16  options = {'cold': True,
17             'pageset_repeat': 5}
18
19class StartWithUrlWarm(test.Test):
20  """Measure time to start Chrome warm with startup URLs"""
21  tag = 'warm'
22  test = startup.StartWithUrl
23  page_set = page_sets.StartupPagesPageSet
24  options = {'warm': True,
25             'pageset_repeat': 10}
26
27