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 AUTHOR = 'ARC Team' 6 NAME = 'cheets_CTS.plans.arm.arc_codec' 7 ATTRIBUTES = 'suite:video' 8 DEPENDENCIES = 'arc' 9 JOB_RETRIES = 2 10 TEST_TYPE = 'server' 11 TIME = 'LENGTHY' 12 13 DOC = ('Run a local plan arc_codec which runs those test cases using ArcCodec ' 14 'of Android 6.0_r12 Compatibility Test Suite (CTS), build 3426263,' 15 'using arm ABI in the ARC container.') 16 17 def run_CTS(machine): 18 host = hosts.create_host(machine) 19 job.run_test( 20 'cheets_CTS', 21 host=host, 22 iterations=1, 23 tag='plans.arc_codec', 24 target_plan='arc_codec', 25 bundle='arm', 26 timeout=14400) 27 28 parallel_simple(run_CTS, machines) 29