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 5 AUTHOR = 'angli, sbasi' 6 NAME = 'android_ACTS.BluetoothTest' 7 TIME = 'MEDIUM' 8 TEST_TYPE = 'Server' 9 SUITE = '' 10 11 DOC = """ 12 This test runs BluetoothTest against a Bluetooth test bed. 13 14 """ 15 import common 16 from autotest_lib.server import utils 17 18 19 def 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 27 parallel_simple(run, machines) 28