• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2016 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 = 'tturney'
6NAME = 'android_ACTS.BluetoothFunhausTest'
7TIME = 'LONG'
8TEST_TYPE = 'Server'
9ATTRIBUTES = 'suite:android_bluetooth_funhaus'
10
11DOC = """
12This test runs Bluetooth Audio Quality tests
13against a Bluetooth Funhaus test beds.
14
15"""
16import common
17from autotest_lib.server import utils
18
19
20def run(machine):
21    job.run_test('android_ACTS',
22                 testbed=hosts.create_testbed(machine),
23                 config_file='android1758-bluetooth.config',
24                 test_file='bt_funhaus_test',
25                 test_tracker_project_id=11404,
26                 testtracker_owner='android-comms-tvc@google.com',
27                 acts_timeout=86400,
28                 additional_configs=['bt_config_funhaus.json', 'bt_configs', 'bt_music']
29                 )
30
31
32parallel_simple(run, machines)
33