blob: cfaeee718e8d0ae7562e29a964baa1c786812a16 [file] [log] [blame]
# Copyright 2016 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.
AUTHOR = 'ARC++ Team'
NAME = 'cheets_GTS.tradefed-run-collect-tests-only'
ATTRIBUTES = 'suite:gts'
DEPENDENCIES = 'arc'
JOB_RETRIES = 2
TEST_TYPE = 'server'
TIME = 'LENGTHY'
DOC = ('Run tradefed to collect all of the available GTS tests for this device.')
def run_GTS(machine):
host = hosts.create_host(machine)
job.run_test(
'cheets_GTS',
host=host,
iterations=1,
tag='tradefed-run-collect-tests-only',
gts_tradefed_args = ['run', 'commandAndExit', 'collect-tests-only',
# TODO(b/67474330): Remove this workaround for GTS5.0 once it's fixed
'--preparer-whitelist',
'com.android.compatibility.common.tradefed.targetprep.DynamicConfigPusher'
],
timeout=600)
parallel_simple(run_GTS, machines)