• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5AUTHOR = 'angli, sbasi'
6NAME = 'android_ACTS.SampleTest'
7TIME = 'MEDIUM'
8TEST_TYPE = 'Server'
9SUITE = ''
10
11DOC = """
12This test runs SampleTest against a SampleTestBed.
13
14"""
15import common
16from autotest_lib.server import utils
17
18args_dict = utils.args_to_dict(args)
19config_file = args_dict.get('config_file')
20test_case = args_dict.get('test_case')
21
22def run(machine):
23    job.run_test('android_ACTS',
24                 testbed=hosts.create_testbed(machine),
25                 config_file='sample_config.txt',
26                 testbed_name='SampleTestBed',
27                 test_case='SampleTest')
28
29
30parallel_simple(run, machines)
31