Home | History | Annotate | Download | only in cellular_Smoke
      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 SUITE = "cell_emulator"
     11 TIME = "SHORT"
     12 TEST_CATEGORY = "Functional"
     13 TEST_CLASS = "network"
     14 TEST_TYPE = "client"
     15 
     16 DOC = """
     17   Tests that a modem can connect to the network.
     18 """
     19 
     20 from autotest_lib.client.cros.cellular import labconfig
     21 
     22 
     23 config = labconfig.Configuration(args)
     24 for technology in config.get_technologies():
     25     job.run_test('cellular_Smoke',
     26                  config=config,
     27                  technology=technology,
     28                  tag=technology)
     29