• 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
5AUTHOR = 'ARC Team'
6NAME = 'cheets_CTS.x86.all'
7ATTRIBUTES = 'suite:arc-cts-stable, suite:arc-cts-beta'
8DEPENDENCIES = 'arc, cts_abi_x86'
9TEST_TYPE = 'server'
10TIME = 'LENGTHY'
11
12DOC = ('Run all tests in the Compatibility Test Suite (CTS),'
13       'using arm ABI in the ARC container.')
14
15def run_CTS(machine):
16    host = hosts.create_host(machine)
17    job.run_test(
18        'cheets_CTS',
19        host=host,
20        iterations=1,
21        tag='all',
22        bundle='x86',
23        needs_push_media=True,
24        max_retry = 9,
25        timeout=3600 * 24 * 1.5)
26
27parallel_simple(run_CTS, machines)
28