blob: 4268e909da1b40fdef6e2f7c234a953910336062 [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.
# Checking if the Quality Report is enabled and disabled correctly in
# different scenarios.
#
# Purpose: Check Quality Report is enabled or disabled in various scenarios
# Deprecated variables:
# TIME = 'SHORT' # Approximately 4 mins on trogdor/lazor
# TEST_CATEGORY = 'Functional'
from autotest_lib.server import utils
NAME = 'bluetooth_AdapterQRHealth.qr_check_states_test'
METADATA = {
'contacts': ['chromeos-bt-team@google.com'],
# ChromeOS > Platform > Connectivity > Bluetooth
'bug_component': 'b:167317',
'criteria': 'Pass all the btmon log checking',
'hw_agnostic': False,
'life_cycle_stage': 'owner_monitored',
'requirements': ['bt-hciExt-0011-v01', 'bt-hciExt-0012-v01',
'bt-dbg-0009-v01', 'bt-dbg-0010-v01', 'bt-dbg-0011-v01']
}
ATTRIBUTES = ''
TEST_TYPE = 'server'
DEPENDENCIES = 'bluetooth' # This test does not need btpeer devices.
args_dict = utils.args_to_dict(args)
def run(machine):
host = hosts.create_host(machine)
job.run_test('bluetooth_AdapterQRHealth', host=host, num_iterations=1,
args_dict=args_dict, test_name=NAME.split('.')[1], tag='.'.join(NAME.split('.')[1:]))
parallel_simple(run, machines)