• 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
5NAME = "BootPerfServer"
6AUTHOR = "Chrome OS Team"
7ATTRIBUTES = "suite:kernel_per-build_benchmarks"
8SUITE = "kernel_per-build_benchmarks"
9TIME = "SHORT"
10TEST_CATEGORY = "Benchmark"
11TEST_CLASS = "platform"
12TEST_TYPE = "server"
13
14DOC = """
15This test reboots the client and uses the client-side platform_BootPerf test
16to collect boot performance metrics.
17"""
18
19def run_bootperf(machine):
20    host = hosts.create_host(machine)
21    job.run_test("platform_BootPerfServer", host=host, iterations=10)
22
23parallel_simple(run_bootperf, machines)
24