33 lines
896 B
Plaintext
33 lines
896 B
Plaintext
# Copyright 2021 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 = 'chromeos-bluetooth'
|
|
NAME = 'bluetooth_AdapterSAHealth.all_floss'
|
|
PURPOSE = ('Batch of standalone tests for Floss')
|
|
CRITERIA = 'Pass all health test'
|
|
ATTRIBUTES = ''
|
|
TIME = 'MEDIUM'
|
|
TEST_CATEGORY = 'Functional'
|
|
TEST_CLASS = 'bluetooth'
|
|
TEST_TYPE = 'server'
|
|
DEPENDENCIES = 'bluetooth'
|
|
PY_VERSION = 3
|
|
|
|
DOC = """
|
|
A batch of Bluetooth standalone health tests. These tests will run all
|
|
standalone tests that are currently supported on Floss.
|
|
"""
|
|
|
|
args_dict = utils.args_to_dict(args)
|
|
|
|
def run(machine):
|
|
host = hosts.create_host(machine)
|
|
job.run_test('bluetooth_AdapterSAHealth', host=host,
|
|
num_iterations=1, floss=True)
|
|
|
|
parallel_simple(run, machines)
|
|
|