1# Copyright 2015 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 5from autotest_lib.server import utils 6 7AUTHOR = 'angli, sbasi' 8NAME = 'android_ACTS' 9TIME = 'MEDIUM' 10TEST_TYPE = 'Server' 11 12DOC = """ 13This test runs ACTS against a inputed config_file, test_bed, test_case. 14""" 15 16args_dict = utils.args_to_dict(args) 17config_file = args_dict.get('config_file') 18test_bed = args_dict.get('test_bed') 19test_case = args_dict.get('test_case') 20test_file = args_dict.get('test_file') 21 22def run(machine): 23 job.run_test('android_ACTS', testbed=hosts.create_testbed(machine), 24 config_file=config_file, testbed_name=test_bed, 25 test_case=test_case, test_file=test_file) 26 27 28parallel_simple(run, machines) 29