1 # Copyright 2017 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, jaineelm, krisr' 6 NAME = 'android_ACTS.Telephony_Nexus_TMO' 7 TIME = 'LONG' 8 TEST_TYPE = 'Server' 9 ATTRIBUTES = 'suite:android_telephony_nexus' 10 DEPENDENCIES = 'carrier:tmobile,location:mtv' 11 12 DOC = """ 13 This test runs telephony Nexus sanity against 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_tmo_nexus', 21 additional_configs=['simcard_list.json'], 22 override_build_url='git_master-release/sailfish-userdebug/latest', 23 testtracker_project_id=11403, 24 testtracker_owner='android-comms-tvc (a] google.com', 25 testtracker_extra_env="tmobile", 26 acts_timeout=25200) 27 28 parallel_simple(run, machines) 29