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