1# Copyright 2021 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# This file is not auto-generated. Don't delete it. 6 7AUTHOR = 'ARC++ Team' 8NAME = 'cheets_CTS_R.arm.waivers' 9ATTRIBUTES = 'suite:cts, suite:cts-hardware' 10DEPENDENCIES = 'arc' 11JOB_RETRIES = 1 12TEST_TYPE = 'server' 13TIME = 'MEDIUM' 14MAX_RESULT_SIZE_KB = 512000 15PY_VERSION = 3 16DOC = 'Run waived tests of the Android Compatibility Test Suite (CTS) using arm ABI in ARC.' 17 18def run_TS(machine): 19 host_list = [hosts.create_host(machine)] 20 job.run_test( 21 'cheets_CTS_R', 22 hosts=host_list, 23 iterations=1, 24 max_retry=10, 25 tag='arm.waivers', 26 test_name='cheets_CTS_R.arm.waivers', 27 run_template=['run', 'commandAndExit', 'cts', '--subplan', 'waivers'], 28 retry_template=['run', 'commandAndExit', 'retry', '--retry', '{session_id}'], 29 target_module='cts-dev', 30 target_plan='waivers', 31 load_waivers=False, 32 bundle='arm', 33 retry_manual_tests=True, 34 warn_on_test_retry=False, 35 uri='DEV_MOBLAB', 36 use_jdk9=True, 37 timeout=7200) 38 39parallel_simple(run_TS, machines) 40