• 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.BluetoothAutoTest'
7TIME = 'LONG'
8TEST_TYPE = 'Server'
9ATTRIBUTES = 'suite:android_bluetooth_auto'
10DEPENDENCIES = 'bluetoothauto'
11
12DOC = """
13This test runs Bluetooth Audio Quality tests
14against a Bluetooth Funhaus test beds.
15
16"""
17import common
18from autotest_lib.server import utils
19
20
21def run(machine):
22    job.run_test('android_ACTS',
23                 testbed=hosts.create_testbed(machine),
24                 config_file='android1758-bluetooth.config',
25                 test_file='bt_auto_test',
26                 acts_timeout=18000,
27                 additional_configs=['audio_tones', 'simcard_list.json']
28                 )
29
30
31parallel_simple(run, machines)
32