49 lines
1.9 KiB
Plaintext
49 lines
1.9 KiB
Plaintext
# Copyright 2018 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.
|
|
|
|
# This file has been automatically generated. Do not edit!
|
|
from autotest_lib.server import utils as server_utils
|
|
|
|
AUTHOR = 'ARC++ Team'
|
|
NAME = 'cheets_CTS_P.internal.arm.CtsBluetoothTestCases'
|
|
ATTRIBUTES = 'suite:arc-cts, suite:arc-cts-unibuild, suite:arc-cts-unibuild-hw'
|
|
DEPENDENCIES = 'arc'
|
|
JOB_RETRIES = 1
|
|
TEST_TYPE = 'server'
|
|
TIME = 'MEDIUM'
|
|
MAX_RESULT_SIZE_KB = 512000
|
|
PY_VERSION = 3
|
|
DOC = 'Run module CtsBluetoothTestCases of the Android Compatibility Test Suite (CTS) using arm ABI in the ARC++ container.'
|
|
|
|
# For local debugging, if your test setup doesn't have servo, REMOVE these
|
|
# two lines.
|
|
args_dict = server_utils.args_to_dict(args)
|
|
servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
|
|
|
|
def run_TS(machine):
|
|
# REMOVE 'servo_args=servo_args' arg for local debugging if your test
|
|
# setup doesn't have servo.
|
|
try:
|
|
host_list = [hosts.create_host(machine, servo_args=servo_args)]
|
|
except:
|
|
# Just ignore any servo setup flakiness.
|
|
host_list = [hosts.create_host(machine)]
|
|
job.run_test(
|
|
'cheets_CTS_P',
|
|
hosts=host_list,
|
|
iterations=1,
|
|
tag='internal.arm.CtsBluetoothTestCases',
|
|
test_name='cheets_CTS_P.internal.arm.CtsBluetoothTestCases',
|
|
run_template=['run', 'commandAndExit', 'cts', '--module', 'CtsBluetoothTestCases', '--logcat-on-failure', '--dynamic-config-url='],
|
|
retry_template=['run', 'commandAndExit', 'retry', '--retry', '{session_id}', '--dynamic-config-url='],
|
|
target_module='CtsBluetoothTestCases',
|
|
target_plan=None,
|
|
bundle='arm',
|
|
uri='DEV',
|
|
prerequisites=['bluetooth'],
|
|
hard_reboot_on_failure=True,
|
|
timeout=3600)
|
|
|
|
parallel_simple(run_TS, machines)
|