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 = 'angli, sbasi'
      6 NAME = 'android_ACTS.BluetoothTest'
      7 TIME = 'MEDIUM'
      8 TEST_TYPE = 'Server'
      9 ATTRIBUTES = 'suite:android_bluetooth'
     10 DEPENDENCIES = 'bluetoothcell'
     11 
     12 DOC = """
     13 This test runs BluetoothTest against a Bluetooth test bed.
     14 
     15 """
     16 import common
     17 from autotest_lib.server import utils
     18 
     19 
     20 def run(machine):
     21     job.run_test('android_ACTS',
     22                  testbed=hosts.create_testbed(machine),
     23                  test_tracker_project_id=11404,
     24                  config_file='android1758-bluetooth.config',
     25                  test_file='bt_and_ble_sanity',
     26                  acts_timeout=14400)
     27 
     28 
     29 parallel_simple(run, machines)
     30