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 5AUTHOR = 'keybuk@chromium.org' 6NAME = 'bluetooth_Sanity_AdapterPresent' 7ATTRIBUTES = "suite:bluetooth, suite:bluetooth_sanity" 8SUITE = 'bluetooth,bluetooth_sanity' 9TIME = 'SHORT' 10TEST_CLASS = 'bluetooth' 11TEST_TYPE = 'Server' 12DEPENDENCIES = 'bluetooth,wificell' 13 14DOC = """ 15Verify that the device has a Bluetooth adapter and that it's visible to both 16the Kernel and the Bluetooth daemon. 17""" 18 19def run(machine): 20 device_host = hosts.create_host(machine) 21 job.run_test('bluetooth_Sanity_AdapterPresent', 22 device_host=device_host, 23 tester_host=None, 24 interactive=False) 25 26 27parallel_simple(run, machines) 28