OLD | NEW |
(Empty) | |
| 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 = "Sam Leffler <sleffler@google.com>" |
| 6 TIME = "LONG" |
| 7 NAME = "WiFi Perf" |
| 8 TEST_CATEGORY = "Stress" |
| 9 TEST_CLASS = "network" |
| 10 TEST_TYPE = "Server" |
| 11 SYNC_COUNT = 1 |
| 12 DOC = """ |
| 13 WiFiMatFunc is a suite of 3-machine tests to validate basic WiFi functionality. |
| 14 One client, one server, and one programmable WiFi AP/Router are required |
| 15 (either off-the-shelf with a network-accesible CLI or a Linux/BSD system |
| 16 with a WiFi card that supports HostAP functionality). |
| 17 |
| 18 Configuration information to run_test: |
| 19 |
| 20 server - the IP address of the server (automatically filled in) |
| 21 client - the IP address of the client (automatically filled in) |
| 22 router - the IP address of the WiFi AP/Router and the names of the |
| 23 wifi and wired devices to configure |
| 24 """ |
| 25 |
| 26 from autotest_lib.server import site_wifitest |
| 27 |
| 28 |
| 29 def run_server_tests(machine): |
| 30 site_wifitest.run_test_dir("network_WiFiPerf", job, args, machine) |
| 31 |
| 32 |
| 33 parallel_simple(run_server_tests, machines) |
OLD | NEW |