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 5AUTHOR = 'bettyzhou, krisr' 6NAME = 'android_ACTS.Telephony_SPT_Basic' 7TIME = 'LONG' 8TEST_TYPE = 'Server' 9ATTRIBUTES = ('suite:android_telephony_nexus_spt,' 10 'suite:android_telephony_nightly_spt') 11DEPENDENCIES = 'carrier:sprint' 12 13DOC = """ 14This test runs telephony sanity against an phones with Sprint SIMs. 15""" 16 17def 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_spt_basic', 22 additional_configs=['simcard_list.json'], 23 acts_timeout=18000) 24 25parallel_simple(run, machines) 26