blob: 64ce7bf2fe5c53bade078b07d8ac3ef751329a3f [file] [log] [blame]
# Copyright 2022 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Test the speed of a HID device reconnect to DUT
#
# Purpose: Test the speed of a HID device reconnect to DUT.
# Deprecated variables:
# TIME = 'SHORT'
# TEST_CATEGORY = 'Functional'
from autotest_lib.server import utils
NAME = 'bluetooth_AdapterCLHealth.cl_HID_reconnect_speed_test.floss'
METADATA = {
'contacts': ['chromeos-bt-team@google.com'],
# ChromeOS > Platform > Connectivity > Bluetooth
'bug_component': 'b:167317',
'criteria': 'HID device should reconnect fast.',
'hw_agnostic': False,
}
# TODO: Remove ['Quick Health'] flag from AdapterCLHealth when moving to stable.
ATTRIBUTES = 'suite:bluetooth_floss'
TEST_TYPE = 'server'
DEPENDENCIES = 'bluetooth_state:NORMAL, working_bluetooth_btpeer:1'
args_dict = utils.args_to_dict(args)
def run(machine):
host = hosts.create_host(machine)
job.run_test('bluetooth_AdapterCLHealth', host=host,
num_iterations=1, args_dict=args_dict,
test_name=NAME.split('.')[1], floss=True,
floss_lm_quirk=True)
parallel_simple(run, machines)