| 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 open 802.11n/HT40 connection in the 5GHz band | 5 # Test performance of an open 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", | 10 { "name":"Perf5HT40", |
| 11 "steps":[ # Channel 48 | 11 "steps":[ # Channel 48 |
| 12 [ "create", { "type":"hostap" } ], | 12 [ "create", { "type":"hostap" } ], |
| 13 | 13 |
| 14 [ "config", { "channel":"5240", "ht40":None, "puren":None } ], | 14 [ "config", { "channel":"5240", "ht40-":None, "puren":None } ], |
| 15 [ "connect", { "security":"none" } ], | 15 [ "connect", { "security":"none" } ], |
| 16 | 16 |
| 17 [ "client_powersave_off" ], | 17 [ "client_powersave_off" ], |
| 18 | 18 |
| 19 [ "client_iperf", { "tcp":None, "test_time":"60" } ], | 19 [ "client_iperf", { "tcp":None, "test_time":"60" } ], |
| 20 [ "server_iperf", { "tcp":None, "test_time":"60" } ], | 20 [ "server_iperf", { "tcp":None, "test_time":"60" } ], |
| 21 | 21 |
| 22 [ "client_iperf", { "udp":None, "bandwidth":"10m" } ], | 22 [ "client_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 23 [ "server_iperf", { "udp":None, "bandwidth":"10m" } ], | 23 [ "server_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 24 | 24 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 51 | 51 |
| 52 [ "client_iperf", { "udp":None, "bandwidth":"110m" } ], | 52 [ "client_iperf", { "udp":None, "bandwidth":"110m" } ], |
| 53 [ "server_iperf", { "udp":None, "bandwidth":"110m" } ], | 53 [ "server_iperf", { "udp":None, "bandwidth":"110m" } ], |
| 54 | 54 |
| 55 [ "client_iperf", { "udp":None, "bandwidth":"120m" } ], | 55 [ "client_iperf", { "udp":None, "bandwidth":"120m" } ], |
| 56 [ "server_iperf", { "udp":None, "bandwidth":"120m" } ], | 56 [ "server_iperf", { "udp":None, "bandwidth":"120m" } ], |
| 57 | 57 |
| 58 [ "destroy" ], | 58 [ "destroy" ], |
| 59 ], | 59 ], |
| 60 } | 60 } |
| OLD | NEW |