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 SUITE = "cell_emulator" 11 TIME = "SHORT" 12 TEST_CATEGORY = "Functional" 13 TEST_CLASS = "network" 14 TEST_TYPE = "client" 15 16 DOC = """ 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 24 from autotest_lib.client.cros.cellular import labconfig 25 26 config = labconfig.Configuration(args) 27 28 for technology in config.get_technologies(): 29 job.run_test('cellular_Throughput', 30 config=config, 31 technology=technology, 32 tag=technology) 33