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