21 lines
484 B
Plaintext
21 lines
484 B
Plaintext
|
|
# Copyright 2021 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_TLSFakeOmaha.basic"
|
||
|
|
TIME = "SHORT"
|
||
|
|
TEST_TYPE = "server"
|
||
|
|
PY_VERSION = 3
|
||
|
|
|
||
|
|
DOC = """
|
||
|
|
Test the TLS FakeOmaha API
|
||
|
|
"""
|
||
|
|
|
||
|
|
def run(machine):
|
||
|
|
job.run_test('infra_TLSFakeOmaha',
|
||
|
|
host=hosts.create_host(machine),
|
||
|
|
case='basic')
|
||
|
|
|
||
|
|
parallel_simple(run, machines)
|