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 5from autotest_lib.client.common_lib import utils 6from autotest_lib.server.site_tests.tast import tast 7 8AUTHOR = 'Chromium OS Firmware EngProd team' 9NAME = 'tast.firmware-unstable_usb' 10TIME = 'LENGTHY' 11TEST_TYPE = 'Server' 12DEPENDENCIES = 'servo_state:WORKING, servo_usb_state:NORMAL' 13ATTRIBUTES = 'suite:faft_unstable' 14MAX_RESULT_SIZE_KB = 1024 * 1024 15PY_VERSION = 3 16JOB_RETRIES = 0 17 18# tast.py uses binaries installed from autotest_server_package.tar.bz2. 19REQUIRE_SSP = True 20 21DOC = ''' 22Run Tast tests for EC firmware. 23 24The tests are part of 'group:firmware'. The 'firmware_unstable' 25sub-attribute limits it to unstable tests. Once the test is stable change 26the attribute to one of the others. The 'firmware_usb' further limits this 27to machines with working usb sticks. 28''' 29 30command_args, varslist = tast.split_arguments(args) 31args_dict = utils.args_to_dict(command_args) 32assert 'servo_state:WORKING' in DEPENDENCIES 33servo_args = hosts.CrosHost.get_servo_arguments(args_dict) 34 35def run(machine): 36 job.run_test('tast', 37 host=hosts.create_host(machine, servo_args=servo_args), 38 test_exprs=['("group:firmware" && firmware_unstable && firmware_usb)'], 39 ignore_test_failures=True, 40 max_run_sec=16200, # 4h30m 41 command_args=command_args, 42 varslist=varslist, 43 ephemeraldevserver='false') 44 45parallel_simple(run, machines) 46