• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2012 The Chromium OS 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
5AUTHOR = "Chrome OS Perf/jrbarnette"
6NAME = "BootPerfBVT"
7TIME = "LONG"
8TEST_CATEGORY = "Benchmark"
9TEST_CLASS = "platform"
10TEST_TYPE = "server"
11
12DOC = """
13This test gathers performance metrics about a system by rebooting it and
14collecting boot times.
15"""
16
17
18def run_bootperf(machine):
19    host = hosts.create_host(machine)
20    job.run_test('platform_BootPerfServer', host=host)
21
22
23parallel_simple(run_bootperf, machines)
24