xref: /aosp_15_r20/external/autotest/server/site_tests/infra_CompanionDuts/control (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright 2021 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
5AUTHOR = 'dbeckett'
6NAME = 'infra_CompanionDuts'
7TIME = 'SHORT'
8TEST_CATEGORY = 'General'
9TEST_CLASS = 'stub'
10TEST_TYPE = 'server'
11PY_VERSION = 3
12DOC = """
13Verify the companion dut flag reaches a test.
14"""
15
16
17def run(machine):
18    host = hosts.create_host(machine)
19    companions = hosts.create_companion_hosts(companion_hosts)
20    job.run_test('infra_CompanionDuts', host=host, companions=companions)
21
22parallel_simple(run, machines)
23