Home | History | Annotate | Download | only in bluetooth_Sanity_AdapterPresent
      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 SUITE = 'bluetooth,bluetooth_sanity'
      9 TIME = 'SHORT'
     10 TEST_CLASS = 'bluetooth'
     11 TEST_TYPE = 'Server'
     12 DEPENDENCIES = 'bluetooth,wificell'
     13 
     14 DOC = """
     15 Verify that the device has a Bluetooth adapter and that it's visible to both
     16 the Kernel and the Bluetooth daemon.
     17 """
     18 
     19 def 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 
     27 parallel_simple(run, machines)
     28