1# Copyright 2022 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 = 'seewaifu' 6NAME = 'infra_DutServers' 7TIME = 'SHORT' 8TEST_CATEGORY = 'General' 9TEST_CLASS = 'stub' 10TEST_TYPE = 'server' 11PY_VERSION = 3 12DOC = """ 13Verify the dut server flag (--dut_servers) reaches a test. 14The following command should pass: 15 test_that --board=<board> <dut> infra_DutServers --dut_servers=<addr> 16""" 17 18def run(machine): 19 host = hosts.create_host(machine) 20 job.run_test('infra_DutServers', host=host, dut_servers=dut_servers) 21 22parallel_simple(run, machines) 23