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.plans.x86.arc_codec' 7ATTRIBUTES = 'suite:video' 8DEPENDENCIES = 'arc' 9JOB_RETRIES = 2 10TEST_TYPE = 'server' 11TIME = 'LENGTHY' 12 13DOC = ('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 x86 ABI in the ARC container.') 16 17def 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='x86', 26 timeout=14400) 27 28parallel_simple(run_CTS, machines) 29