1# Copyright (c) 2011 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 = "ChromeOS Team" 6NAME = "cellular_Smoke" 7PURPOSE = "Verify cell modem can connect to an emulated network." 8CRITERIA = """Modem connects to an emulated network and show up as connected.""" 9ATTRIBUTES = "suite:cell_emulator" 10SUITE = "cell_emulator" 11TIME = "SHORT" 12TEST_CATEGORY = "Functional" 13TEST_CLASS = "network" 14TEST_TYPE = "client" 15 16DOC = """ 17 Tests that a modem can connect to the network. 18""" 19 20from autotest_lib.client.cros.cellular import labconfig 21 22 23config = labconfig.Configuration(args) 24for technology in config.get_technologies(): 25 job.run_test('cellular_Smoke', 26 config=config, 27 technology=technology, 28 tag=technology) 29