22 lines
534 B
Plaintext
22 lines
534 B
Plaintext
|
|
# Copyright 2020 The Chromium OS Authors. All rights reserved.
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
AUTHOR = "dbeckett"
|
||
|
|
NAME = "infra_TLSExecDUTCommand.stress"
|
||
|
|
TIME = "SHORT"
|
||
|
|
TEST_TYPE = "server"
|
||
|
|
ATTRIBUTES = 'suite:ent-nightly'
|
||
|
|
PY_VERSION = 3
|
||
|
|
|
||
|
|
DOC = """
|
||
|
|
Test the TLS ExecDUTCommand API
|
||
|
|
"""
|
||
|
|
|
||
|
|
def run(machine):
|
||
|
|
job.run_test('infra_TLSExecDUTCommand',
|
||
|
|
host=hosts.create_host(machine),
|
||
|
|
case='stress')
|
||
|
|
|
||
|
|
parallel_simple(run, machines)
|