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 5 NAME = "BootDevice1" 6 AUTHOR = "Brillo Team" 7 ATTRIBUTES = "suite:brillo-presubmit" 8 TIME = "SHORT" 9 TEST_CATEGORY = "functional" 10 TEST_CLASS = "platform" 11 TEST_TYPE = "server" 12 13 DOC = """ 14 This test reboots the device reboots successfully. 15 """ 16 17 def run_bootdevice(machine): 18 host = hosts.create_host(machine) 19 job.run_test("platform_BootDevice", host=host) 20 21 parallel_simple(run_bootdevice, machines) 22