• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2010 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_Throughput"
7PURPOSE = "Measure speed of emulated cellular network."
8CRITERIA = """Bandwidth a reasonable fraction of max for the technology."""
9ATTRIBUTES = "suite:cell_emulator"
10SUITE = "cell_emulator"
11TIME = "SHORT"
12TEST_CATEGORY = "Functional"
13TEST_CLASS = "network"
14TEST_TYPE = "client"
15
16DOC = """
17  Measures modem throughput.
18
19  NB: This test is not designed to run standalone.  If you run without
20  the server test cellular_ThroughputController, you are responsible
21  for running the http server.
22"""
23
24from autotest_lib.client.cros.cellular import labconfig
25
26config = labconfig.Configuration(args)
27
28for technology in config.get_technologies():
29    job.run_test('cellular_Throughput',
30                 config=config,
31                 technology=technology,
32                 tag=technology)
33