1# Copyright 2022 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 Performance Metrics Team ([email protected])' 6NAME = 'tast.cuj' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:cuj' 10 11# tast.py uses binaries installed from autotest_server_package.tar.bz2. 12REQUIRE_SSP = True 13 14DOC = ''' 15This suite is used to run CUJ tast tests against a remote DUT. 16''' 17 18def run(machine): 19 job.run_test('tast', 20 host=hosts.create_host(machine), 21 test_exprs=['("group:cuj")'], 22 ignore_test_failures=True, max_run_sec=21600, 23 command_args=args) 24parallel_simple(run, machines)