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 """WiFiPerf is a suite of 3-machine tests to validate basic WiFi functionality. |
| 6 One client, one server, and one programmable WiFi AP/Router are required |
| 7 (either off-the-shelf with a network-accesible CLI or a Linux/BSD system |
| 8 with a WiFi card that supports HostAP functionality). |
| 9 |
| 10 Configuration information to run_test: |
| 11 |
| 12 server - the IP address of the server (automatically filled in) |
| 13 client - the IP address of the client (automatically filled in) |
| 14 router - the IP address of the WiFi AP/Router and the names of the |
| 15 wifi and wired devices to configure |
| 16 """ |
| 17 |
| 18 from autotest_lib.server import site_wifitest |
| 19 |
| 20 class network_WiFiPerf(site_wifitest.test): |
| 21 pass |
OLD | NEW |