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# TODO Integrate these changes back into cts_N as soon as partners have a 6# chance to configure their DUT's correctly and documentation is complete. 7 8AUTHOR = 'ARC++ Team' 9NAME = 'cheets_CTS_N.arm.CtsCameraTestCasesPreconditions' 10ATTRIBUTES = 'suite:cts_N_Pre' 11DEPENDENCIES = 'arc, lighting' 12JOB_RETRIES = 2 13TEST_TYPE = 'server' 14TIME = 'LENGTHY' 15 16DOC = ('Run module CtsCameraTestCases of the ' 17 'Android 7.1_r6 Compatibility Test Suite (CTS), build 4009365,' 18 'using arm ABI in the ARC++ container.') 19 20def run_CTS(machine): 21 host = hosts.create_host(machine) 22 job.run_test( 23 'cheets_CTS_N', 24 host=host, 25 iterations=1, 26 max_retry=3, 27 needs_push_media=False, 28 tag='CtsCameraTestCases', 29 target_module='CtsCameraTestCases', 30 bundle='arm', 31 warn_on_test_retry=False, 32 timeout=3600) 33 34parallel_simple(run_CTS, machines) 35