• 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'
9
10DOC = """
11This test runs SampleTest against a SampleTestBed.
12
13"""
14import common
15from autotest_lib.server import utils
16
17args_dict = utils.args_to_dict(args)
18config_file = args_dict.get('config_file')
19test_case = args_dict.get('test_case')
20
21def run(machine):
22    job.run_test('android_ACTS',
23                 testbed=hosts.create_testbed(machine),
24                 config_file='sample_config.txt',
25                 testbed_name='SampleTestBed',
26                 test_case='SampleTest')
27
28
29parallel_simple(run, machines)
30