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_ValidAddress' 7ATTRIBUTES = "suite:bluetooth, suite:bluetooth_sanity" 8TIME = 'SHORT' 9TEST_CLASS = 'bluetooth' 10TEST_TYPE = 'Server' 11DEPENDENCIES = 'bluetooth,wificell' 12 13DOC = """ 14Verify that the device's Bluetooth adapter has a valid address. 15 16This is a useful sanity check because an address of 00:00:00:00:00:00 often 17indicates a problem with the host subsystem, stack or driver. 18""" 19 20def 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 28parallel_simple(run, machines) 29