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_ValidAddress' 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's Bluetooth adapter has a valid address. 15 16 This is a useful sanity check because an address of 00:00:00:00:00:00 often 17 indicates a problem with the host subsystem, stack or driver. 18 """ 19 20 def run(machine): 21 device_host = hosts.create_host(machine) 22 job.run_test('bluetooth_Sanity_ValidAddress', 23 device_host=device_host, 24 tester_host=None, 25 interactive=False) 26 27 28 parallel_simple(run, machines) 29