1 # Copyright (c) 2013 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 = 'keybuk (a] chromium.org' 6 NAME = 'bluetooth_Sanity_Discoverable' 7 ATTRIBUTES = "suite:bluetooth, suite:bluetooth_sanity" 8 TIME = 'SHORT' 9 TEST_CLASS = 'bluetooth' 10 TEST_TYPE = 'Server' 11 DEPENDENCIES = 'bluetooth,wificell' 12 13 DOC = """ 14 Verify that the device can be discovered from another Bluetooth device. 15 16 This is a useful sanity check because it tests basic functionality of the 17 radio and host subsystem. 18 """ 19 20 from autotest_lib.server.cros.bluetooth import bluetooth_tester 21 from autotest_lib.server import utils 22 23 24 args_dict = utils.args_to_dict(args) 25 26 def run(machine): 27 device_host = hosts.create_host(machine) 28 tester_host = bluetooth_tester.create_host_from(device_host, args=args_dict) 29 job.run_test('bluetooth_Sanity_Discoverable', 30 device_host=device_host, 31 tester_host=tester_host, 32 interactive=False) 33 34 35 parallel_simple(run, machines) 36