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