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 # Test performance of a TKIP-encrypted 802.11a connection |
| 6 # w/ power save disabled. |
| 7 |
| 8 { "name":"Perf11a_TKIP", |
| 9 "steps":[ # Channel 48 |
| 10 [ "create", { "type":"hostap" } ], |
| 11 [ "config", { "channel":"5240", "mode":"11a", |
| 12 "wpa":"1", "wpa_key_mgmt":"WPA-PSK", |
| 13 "wpa_pairwise":"TKIP", |
| 14 "wpa_passphrase":"chromeos" } ], |
| 15 [ "connect", { "security":"wpa", "psk":"chromeos" } ], |
| 16 |
| 17 [ "client_powersave_off" ], |
| 18 |
| 19 [ "client_iperf", { "tcp":None, "test_time":"60" } ], |
| 20 [ "server_iperf", { "tcp":None, "test_time":"60" } ], |
| 21 |
| 22 [ "client_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 23 [ "server_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 24 |
| 25 [ "client_iperf", { "udp":None, "bandwidth":"15m" } ], |
| 26 [ "server_iperf", { "udp":None, "bandwidth":"15m" } ], |
| 27 |
| 28 [ "client_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 29 [ "server_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 30 |
| 31 [ "client_iperf", { "udp":None, "bandwidth":"25m" } ], |
| 32 [ "server_iperf", { "udp":None, "bandwidth":"25m" } ], |
| 33 |
| 34 [ "client_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 35 [ "server_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 36 |
| 37 [ "client_iperf", { "udp":None, "bandwidth":"36m" } ], |
| 38 [ "server_iperf", { "udp":None, "bandwidth":"36m" } ], |
| 39 |
| 40 [ "client_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 41 [ "server_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 42 |
| 43 # TODO(sleffler) multiple streams |
| 44 # TODO(sleffler) mixed streams |
| 45 |
| 46 [ "destroy" ], |
| 47 ], |
| 48 } |
OLD | NEW |