| 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.11n/HT40 connection in the |
| 6 # 2.4GHz band w/ power save disabled. |
| 7 |
| 8 { "name":"Perf24HT40_TKIP", |
| 9 "skip_test":"No way to configure TKIP w/ 802.11n on openwrt", |
| 10 "steps":[ # Channel 6 |
| 11 [ "create", { "type":"hostap" } ], |
| 12 [ "config", { "channel":"2437", "ht40":None, "puren":None, |
| 13 "wpa":"1", "wpa_key_mgmt":"WPA-PSK", |
| 14 "wpa_pairwise":"TKIP", |
| 15 "wpa_passphrase":"chromeos" } ], |
| 16 [ "connect", { "security":"wpa", "psk":"chromeos" } ], |
| 17 |
| 18 [ "client_powersave_off" ], |
| 19 |
| 20 [ "client_iperf", { "tcp":None, "test_time":"60" } ], |
| 21 [ "server_iperf", { "tcp":None, "test_time":"60" } ], |
| 22 |
| 23 [ "client_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 24 [ "server_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 25 |
| 26 [ "client_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 27 [ "server_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 28 |
| 29 [ "client_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 30 [ "server_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 31 |
| 32 [ "client_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 33 [ "server_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 34 |
| 35 [ "client_iperf", { "udp":None, "bandwidth":"50m" } ], |
| 36 [ "server_iperf", { "udp":None, "bandwidth":"50m" } ], |
| 37 |
| 38 [ "client_iperf", { "udp":None, "bandwidth":"60m" } ], |
| 39 [ "server_iperf", { "udp":None, "bandwidth":"60m" } ], |
| 40 |
| 41 [ "client_iperf", { "udp":None, "bandwidth":"70m" } ], |
| 42 [ "server_iperf", { "udp":None, "bandwidth":"70m" } ], |
| 43 |
| 44 [ "client_iperf", { "udp":None, "bandwidth":"80m" } ], |
| 45 [ "server_iperf", { "udp":None, "bandwidth":"80m" } ], |
| 46 |
| 47 [ "client_iperf", { "udp":None, "bandwidth":"90m" } ], |
| 48 [ "server_iperf", { "udp":None, "bandwidth":"90m" } ], |
| 49 |
| 50 [ "client_iperf", { "udp":None, "bandwidth":"100m" } ], |
| 51 [ "server_iperf", { "udp":None, "bandwidth":"100m" } ], |
| 52 |
| 53 [ "client_iperf", { "udp":None, "bandwidth":"110m" } ], |
| 54 [ "server_iperf", { "udp":None, "bandwidth":"110m" } ], |
| 55 |
| 56 [ "client_iperf", { "udp":None, "bandwidth":"120m" } ], |
| 57 [ "server_iperf", { "udp":None, "bandwidth":"120m" } ], |
| 58 |
| 59 # TODO(sleffler) multiple streams |
| 60 # TODO(sleffler) mixed streams |
| 61 |
| 62 [ "destroy" ], |
| 63 ], |
| 64 } |
| OLD | NEW |