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_AdapterPresent' 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 has a Bluetooth adapter and that it's visible to both 15 the Kernel and the Bluetooth daemon. 16 """ 17 18 def run(machine): 19 device_host = hosts.create_host(machine) 20 job.run_test('bluetooth_Sanity_AdapterPresent', 21 device_host=device_host, 22 tester_host=None, 23 interactive=False) 24 25 26 parallel_simple(run, machines) 27