• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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"
8TIME = 'SHORT'
9TEST_CLASS = 'bluetooth'
10TEST_TYPE = 'Server'
11DEPENDENCIES = 'bluetooth,wificell'
12
13DOC = """
14Verify that the device has a Bluetooth adapter and that it's visible to both
15the Kernel and the Bluetooth daemon.
16"""
17
18def 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
26parallel_simple(run, machines)
27