• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2016 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
6AUTHOR = 'ARC++ Team'
7NAME = 'cheets_GTS.tradefed-run-collect-tests-only'
8ATTRIBUTES = 'suite:gts'
9DEPENDENCIES = 'arc'
10JOB_RETRIES = 2
11TEST_TYPE = 'server'
12TIME = 'LENGTHY'
13PRIORITY = 70
14DOC = ('Run tradefed to collect all of the available GTS tests for this device.')
15
16def run_GTS(machine):
17    host = hosts.create_host(machine)
18    job.run_test(
19        'cheets_GTS',
20        host=host,
21        iterations=1,
22        tag='tradefed-run-collect-tests-only',
23        tradefed_args = ['run', 'commandAndExit', 'collect-tests-only'],
24        timeout=600)
25
26parallel_simple(run_GTS, machines)
27