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