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 Team' 6NAME = 'tast.pvs-audio' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:pvs-audio' 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 = ''' 17This test suite is part of the Platform Validation Suite (go/cros-pvs) 18and includes a collection of tast.audio tests that require no 19special hardware to run. 20''' 21def run(machine): 22 job.run_test('tast', 23 host=hosts.create_host(machine), 24 test_exprs=['audio.ALSAConformance', 25 'audio.CrasPlay', 26 'audio.CrasRecord', 27 'audio.CrasRecordQuality', 28 'audio.DevicePlay', 29 'audio.DeviceRecord', 30 'audio.Microphone'], 31 ignore_test_failures=False, max_run_sec=3600, 32 command_args=args, 33 clear_tmp=True) 34parallel_simple(run, machines)