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