blob: 507fe0bf86ede84da8a6b44c29177589f788563f [file] [log] [blame]
# Copyright 2016 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_AudioVolume.hdmi"
METADATA = {
"contacts": ["chromeos-audio-sw@google.com"],
"bug_component": "b:875558",
"criteria": "This test will fail if the recorded volume does not change.",
"doc" : "This test remotely tests HDMI audio volume against DUT."
}
TEST_TYPE = "server"
ATTRIBUTES = "suite:audio_basic"
DEPENDENCIES = "test_hdmiaudio, chameleon_state:WORKING"
JOB_RETRIES = 1
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_AudioVolume", host=host, tag="hdmi",
source_id=chameleon_audio_ids.CrosIds.HDMI,
skipped_model_with_bugs={'kevin':'b/250681713', 'rusty': 'b/294027522'},
)
parallel_simple(run, machines)