1 # Copyright (c) 2014 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:stress5" 8 SUITE = "stress5" 9 TIME = "LONG" 10 TEST_CATEGORY = "Stress" 11 TEST_CLASS = "platform" 12 TEST_TYPE = "server" 13 14 DOC = """ 15 This test reboots the device continuously for a spedified number of iterations. 16 This is useful for testing firmware. 17 """ 18 19 def run_bootdevice(machine): 20 host = hosts.create_host(machine) 21 job.run_test("platform_BootDevice", host=host, iterations=100) 22 23 parallel_simple(run_bootdevice, machines) 24