1# Copyright 2016 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 = "platform_BootPerfServer.shard" 6AUTHOR = "Chrome OS Team" 7TIME = "SHORT" 8TEST_CATEGORY = "infra" 9TEST_CLASS = "platform" 10TEST_TYPE = "server" 11 12DOC = """This test reboots the client on a shard. When a shard is deleted, 13the client that is assigned to it will be rebooted, which guarantees that 14the client has a healthy testing history, and is ready for continuous jobs. 15""" 16 17def run_bootperf(machine): 18 host = hosts.create_host(machine) 19 job.run_test("platform_BootPerfServer", host=host, cmdline_args=args) 20 21parallel_simple(run_bootperf, machines) 22