1# Copyright 2021 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 = 'ChromeOS SW Engprod Team ([email protected])' 6NAME = 'tast.nearby-share-cb2cb' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:nearby-share-remote' 10MAX_RESULT_SIZE_KB = 1024 * 1024 11PY_VERSION = 3 12 13# tast.py uses binaries installed from autotest_server_package.tar.bz2. 14REQUIRE_SSP = True 15 16DOC = '''Run the Tast Nearby Share remote test suite.''' 17 18def run(machine): 19 companions = hosts.create_companion_hosts(companion_hosts) 20 job.run_test('tast', 21 host=hosts.create_host(machine), 22 test_exprs=['("group:nearby-share-remote")'], 23 ignore_test_failures=False, max_run_sec=3600, 24 companion_duts={'cd1':companions[0]}, 25 command_args=args) 26parallel_simple(run, machines) 27 28