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 = 'angli, sbasi' 6NAME = 'android_ACTS.BluetoothTest' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9SUITE = '' 10 11DOC = """ 12This test runs BluetoothTest against a Bluetooth test bed. 13 14""" 15import common 16from autotest_lib.server import utils 17 18 19def run(machine): 20 job.run_test('android_ACTS', 21 testbed=hosts.create_testbed(machine), 22 config_file='shamu_testbed8.config', 23 testbed_name='shamu_x_shamu_testbed_8', 24 test_file='bt_and_ble_sanity') 25 26 27parallel_simple(run, machines) 28