blob: b63afb3723a95fcebff0cd288e37c83c7e4cf290 [file] [log] [blame]
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from autotest_lib.server import utils
AUTHOR = 'rjahagir'
NAME = 'bluetooth_AdapterReboot.stress_100'
PURPOSE = 'Test bluetooth adapter state with rebooting the DUT.'
CRITERIA = 'Adapter should power on or off with correct parameters.'
ATTRIBUTES = 'suite:bluetooth, suite:bluetooth_stress'
TIME = 'LONG' # This takes about 2 hours on cyan.
TEST_CATEGORY = 'Functional'
TEST_CLASS = 'bluetooth'
TEST_TYPE = 'server'
DEPENDENCIES = 'bluetooth'
DOC = """
This test case verifies that the Bluetooth adapter of the DUT can
behave normally when subjected to rebooting the DUT.
"""
args_dict = utils.args_to_dict(args)
def run(machine):
host = hosts.create_host(machine)
job.run_test('bluetooth_AdapterReboot', host=host, num_iterations=100)
parallel_simple(run, machines)