blob: 20b56e56d6a512d75d586a6e1be2d74a209bc49a [file] [log] [blame]
# Copyright 2015 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from autotest_lib.client.cros.audio import audio_test_data
from autotest_lib.client.cros.chameleon import chameleon_audio_ids
from autotest_lib.server import utils
NAME = "audio_AudioNodeSwitch.JACK"
METADATA = {
"contacts": ["chromeos-audio-sw@google.com"],
"bug_component": "b:875558",
"criteria": "This test will fail if the audio node is not as expected.",
"doc" : "Tests selection of audiojack audio node"
}
ATTRIBUTES = "suite:audio_essential"
TEST_TYPE = "server"
DEPENDENCIES = "audio_box, test_audiojack, chameleon_state:WORKING"
args_dict = utils.args_to_dict(args)
chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict)
def run(machine):
host = hosts.create_host(machine, chameleon_args=chameleon_args)
job.run_test("audio_AudioNodeSwitch", host=host, jack_node=True, tag='JACK',
blocked_boards=['lars', # Pending fix for b/147647051
'lars-kernelnext', # Also b/147647051
'strongbad', # Device with no audiojack port
'caroline', # Skip, see dicussion at b/272391048 and b/273162963
'eve', # b/294818332
])
parallel_simple(run, machines)