Home | History | Annotate | Download | only in android_ACTS
      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 
      5 AUTHOR = 'angli, sbasi'
      6 NAME = 'android_ACTS.SampleTest'
      7 TIME = 'MEDIUM'
      8 TEST_TYPE = 'Server'
      9 
     10 DOC = """
     11 This test runs SampleTest against a SampleTestBed.
     12 
     13 """
     14 import common
     15 from autotest_lib.server import utils
     16 
     17 args_dict = utils.args_to_dict(args)
     18 config_file = args_dict.get('config_file')
     19 test_case = args_dict.get('test_case')
     20 
     21 def 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 
     29 parallel_simple(run, machines)
     30