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