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 = 'bettyzhou, krisr'
      6 NAME = 'android_ACTS.Telephony_VZW_Basic'
      7 TIME = 'LONG'
      8 TEST_TYPE = 'Server'
      9 ATTRIBUTES = 'suite:android_telephony_nightly_vzw'
     10 DEPENDENCIES = 'carrier:verizon'
     11 
     12 DOC = """
     13 This test runs telephony sanity against an phones with Verizon SIMs.
     14 """
     15 
     16 def run(machine):
     17     job.run_test('android_ACTS',
     18                  testbed=hosts.create_testbed(machine),
     19                  config_file='android1758-telephony-test-station.config',
     20                  test_file='telephony_vzw_basic',
     21                  additional_configs=['simcard_list.json'],
     22                  acts_timeout=25200)
     23 
     24 parallel_simple(run, machines)
     25