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.stress" 7TIME = "SHORT" 8TEST_TYPE = "server" 9ATTRIBUTES = 'suite:ent-nightly' 10PY_VERSION = 3 11 12DOC = """ 13Test the TLS ExecDUTCommand API 14""" 15 16def run(machine): 17 job.run_test('infra_TLSExecDUTCommand', 18 host=hosts.create_host(machine), 19 case='stress') 20 21parallel_simple(run, machines) 22