1# Copyright 2020 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_TLSExecDUTCommand" 7TIME = "SHORT" 8TEST_TYPE = "server" 9DOC = """ 10Test the TLS ExecDUTCommand API 11""" 12PY_VERSION = 3 13 14def run(machine): 15 job.run_test('infra_TLSExecDUTCommand', 16 host=hosts.create_host(machine)) 17 18parallel_simple(run, machines) 19