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