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_England_Verizon_Roaming' 7 TIME = 'MEDIUM' 8 TEST_TYPE = 'Server' 9 ATTRIBUTES = 'suite:android_telephony_international_roaming' 10 DEPENDENCIES = 'carrier:verizon,location:london' 11 12 DOC = """ 13 This test runs telephony sanity against phones with Verizon SIMs roaming 14 in London. 15 """ 16 17 def run(machine): 18 job.run_test('android_ACTS', 19 testbed=hosts.create_testbed(machine), 20 config_file='android1758-telephony-test-station.config', 21 test_file='telephony_international_roaming', 22 additional_configs=['simcard_list.json'], 23 override_build_url='git_master-release/sailfish-userdebug/latest', 24 testtracker_project_id=11349, 25 testtracker_owner='android-comms-tvc (a] google.com', 26 testtracker_extra_env="verizon_london", 27 acts_timeout=18000) 28 29 parallel_simple(run, machines) 30