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 = 'ChromeOS SW Engprod Team (chromeos-sw-engprod@google.com)'
6NAME = 'tast.nearby-share'
7TIME = 'MEDIUM'
8TEST_TYPE = 'Server'
9ATTRIBUTES = 'suite:nearby-share'
10MAX_RESULT_SIZE_KB = 1024 * 1024
11
12# tast.py uses binaries installed from autotest_server_package.tar.bz2.
13REQUIRE_SSP = True
14
15DOC = '''Run the Tast Nearby Share test suite.'''
16
17def run(machine):
18    job.run_test('tast',
19                 host=hosts.create_host(machine),
20                 test_exprs=['("group:nearby-share")'],
21                 ignore_test_failures=True, max_run_sec=10800,
22                 command_args=args)
23parallel_simple(run, machines)
24