1# Copyright (c) 2019 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 = "The Chromium OS Authors,[email protected]" 6NAME = "audio_advanced" 7PURPOSE = "Suite for testing advanced audio functionalities." 8 9TIME = "LONG" 10TEST_CATEGORY = "General" 11TEST_CLASS = "suite" 12TEST_TYPE = "Server" 13 14DOC = """ 15Audio tests that cover advanced audio functionalities that are based on some 16basic ones or the basic ones under different scenarios like after suspend or 17reboot. 18 19The tests require chameleon and audio boards connected. For stability, all 20cables should be plugged constantly without the jack plugger involved. 21 22USB audio shouldn't be configured with other audio devices like 3.5mm headset 23as there is a known issue that USB chameleon connection might cause 24interference. 25 26""" 27 28import common 29from autotest_lib.server.cros.dynamic_suite import dynamic_suite 30 31# Values specified in this bug template will override default values when 32# filing bugs on tests that are a part of this suite. If left unspecified 33# the bug filer will fallback to it's defaults. 34_BUG_TEMPLATE = { 35 'components': ['OS>Kernel>Audio'], 36 'owner': '[email protected]', 37 'status': None, 38 'summary': None, 39 'title': None, 40 'cc': ['[email protected]', '[email protected]', 41 '[email protected]'] 42} 43 44args_dict['name'] = NAME 45args_dict['job'] = job 46args_dict['add_experimental'] = True 47args_dict['max_runtime_mins'] = 120 48args_dict['bug_template'] = _BUG_TEMPLATE 49 50dynamic_suite.reimage_and_run(**args_dict) 51