Home | History | Annotate | Download | only in android_ACTS
      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 
      5 AUTHOR = 'jimtan'
      6 NAME = 'android_ACTS.BluetoothPowerTest'
      7 TIME = 'LONG'
      8 TEST_TYPE = 'Server'
      9 
     10 DOC = """
     11 This test runs Bluetooth Power tests
     12 against a Bluetooth Power test beds.
     13 
     14 """
     15 import common
     16 from autotest_lib.server import utils
     17 
     18 
     19 def run(machine):
     20     job.run_test('android_ACTS',
     21                  testbed=hosts.create_testbed(machine),
     22                  config_file='android1758-power-test-station.config',
     23                  test_file='bt_power_test',
     24                  additional_apks=[{'apk':'PMC.apk', 'package':'com.android.pmc', 'artifacts':'tests.zip'}],
     25                  acts_timeout=86400)
     26 
     27 
     28 parallel_simple(run, machines)
     29