• 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_CTS_N.x86.tradefed-run-collect-tests-only'
8ATTRIBUTES = 'suite:cts_N'
9DEPENDENCIES = 'arc, cts_abi_x86'
10JOB_RETRIES = 2
11TEST_TYPE = 'server'
12TIME = 'LENGTHY'
13
14DOC = ('Run tradefed to collect all of the available CTS tests for this device/abi.')
15
16
17def run_CTS(machine):
18    host = hosts.create_host(machine)
19    job.run_test(
20        'cheets_CTS_N',
21        host=host,
22        iterations=1,
23        max_retry=0,
24        needs_push_media=False,
25        tag='tradefed-run-collect-tests-only',
26        cts_tradefed_args = ['run', 'commandAndExit', 'collect-tests-only'],
27        bundle='x86',
28        timeout=3600)
29
30parallel_simple(run_CTS, machines)
31