| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Test performance of an AES-encrypted 802.11n/HT40 connection in the 5GHz band | 5 # Test performance of an AES-encrypted 802.11n/HT40 connection in the 5GHz band |
| 6 # w/ power save disabled. | 6 # w/ power save disabled. |
| 7 | 7 |
| 8 # TODO(sleffler) expand channel coverage | 8 # TODO(sleffler) expand channel coverage |
| 9 | 9 |
| 10 { "name":"Perf5HT40_AES", | 10 { "name":"Perf5HT40_AES", |
| 11 "steps":[ # Channel 48 | 11 "steps":[ # Channel 48 |
| 12 [ "create", { "type":"hostap" } ], | 12 [ "create", { "type":"hostap" } ], |
| 13 [ "config", { "channel":"5240", "ht40":None, "puren":None, | 13 [ "config", { "channel":"5240", "ht40-":None, "puren":None, |
| 14 "wpa":"1", "wpa_key_mgmt":"WPA-PSK", | 14 "wpa":"1", "wpa_key_mgmt":"WPA-PSK", |
| 15 "wpa_pairwise":"CCMP", | 15 "wpa_pairwise":"CCMP", |
| 16 "wpa_passphrase":"chromeos" } ], | 16 "wpa_passphrase":"chromeos" } ], |
| 17 [ "connect", { "security":"wpa", "psk":"chromeos" } ], | 17 [ "connect", { "security":"wpa", "psk":"chromeos" } ], |
| 18 | 18 |
| 19 [ "client_powersave_off" ], | 19 [ "client_powersave_off" ], |
| 20 | 20 |
| 21 [ "client_iperf", { "tcp":None, "test_time":"60" } ], | 21 [ "client_iperf", { "tcp":None, "test_time":"60" } ], |
| 22 [ "server_iperf", { "tcp":None, "test_time":"60" } ], | 22 [ "server_iperf", { "tcp":None, "test_time":"60" } ], |
| 23 | 23 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 [ "server_iperf", { "udp":None, "bandwidth":"120m" } ], | 58 [ "server_iperf", { "udp":None, "bandwidth":"120m" } ], |
| 59 | 59 |
| 60 # TODO(sleffler) multiple streams | 60 # TODO(sleffler) multiple streams |
| 61 # TODO(sleffler) mixed streams | 61 # TODO(sleffler) mixed streams |
| 62 | 62 |
| 63 [ "deconfig" ], | 63 [ "deconfig" ], |
| 64 | 64 |
| 65 [ "destroy" ], | 65 [ "destroy" ], |
| 66 ], | 66 ], |
| 67 } | 67 } |
| OLD | NEW |