blob: 843bce24c5d6b2601dbe7bd31fc2a3e12e9509af [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.server import utils
NAME = "audio_AudioBasicBluetoothRecord"
METADATA = {
"contacts": ["chromeos-audio-sw@google.com"],
"bug_component": "b:875558",
"criteria": "This test will fail if the captured audio does not match original file.",
"doc" : "Tests BT record audio function"
}
TEST_TYPE = "server"
#ATTRIBUTES = "suite:audio_advanced"
DEPENDENCIES = "test_bluetooth, chameleon_state:WORKING"
JOB_RETRIES = 1
DOC = """
This test remotely tests bluetooth playback audio function.
"""
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_AudioBasicBluetoothRecord", host=host)
parallel_simple(run, machines)