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 NAME = "BootDevice" 6 AUTHOR = "Chrome OS Team" 7 ATTRIBUTES = "suite:kernel_daily_regression" 8 TIME = "LONG" 9 TEST_CATEGORY = "Stress" 10 TEST_CLASS = "platform" 11 TEST_TYPE = "server" 12 13 DOC = """ 14 This test reboots the device continuously for a spedified number of iterations. 15 This is useful for testing firmware. 16 """ 17 18 def run_bootdevice(machine): 19 host = hosts.create_host(machine) 20 job.run_test("platform_BootDevice", host=host, reboot_iterations=10) 21 22 parallel_simple(run_bootdevice, machines) 23