| 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 an open 802.11n/HT20 connection in the 5GHz band | 
 |   6 # w/ power save enabled. | 
 |   7  | 
 |   8 # TODO(sleffler) expand channel coverage | 
 |   9  | 
 |  10 { "name":"Perf5HT20_PS", | 
 |  11   "steps":[             # Channel 48 | 
 |  12     [ "create",         { "type":"hostap" } ], | 
 |  13     [ "config",         { "channel":"5240", "ht20":None, "puren":None } ], | 
 |  14     [ "connect",        { "security":"none" } ], | 
 |  15  | 
 |  16     [ "client_powersave_on" ], | 
 |  17  | 
 |  18     [ "client_iperf",   { "tcp":None, "test_time":"60" } ], | 
 |  19     [ "server_iperf",   { "tcp":None, "test_time":"60" } ], | 
 |  20  | 
 |  21     [ "client_iperf",   { "udp":None, "bandwidth":"10m" } ], | 
 |  22     [ "server_iperf",   { "udp":None, "bandwidth":"10m" } ], | 
 |  23  | 
 |  24     [ "client_iperf",   { "udp":None, "bandwidth":"20m" } ], | 
 |  25     [ "server_iperf",   { "udp":None, "bandwidth":"20m" } ], | 
 |  26  | 
 |  27     [ "client_iperf",   { "udp":None, "bandwidth":"30m" } ], | 
 |  28     [ "server_iperf",   { "udp":None, "bandwidth":"30m" } ], | 
 |  29  | 
 |  30     [ "client_iperf",   { "udp":None, "bandwidth":"40m" } ], | 
 |  31     [ "server_iperf",   { "udp":None, "bandwidth":"40m" } ], | 
 |  32  | 
 |  33     [ "client_iperf",   { "udp":None, "bandwidth":"50m" } ], | 
 |  34     [ "server_iperf",   { "udp":None, "bandwidth":"50m" } ], | 
 |  35  | 
 |  36     [ "client_iperf",   { "udp":None, "bandwidth":"60m" } ], | 
 |  37     [ "server_iperf",   { "udp":None, "bandwidth":"60m" } ], | 
 |  38  | 
 |  39     [ "client_iperf",   { "udp":None, "bandwidth":"70m" } ], | 
 |  40     [ "server_iperf",   { "udp":None, "bandwidth":"70m" } ], | 
 |  41  | 
 |  42     [ "client_iperf",   { "udp":None, "bandwidth":"80m" } ], | 
 |  43     [ "server_iperf",   { "udp":None, "bandwidth":"80m" } ], | 
 |  44  | 
 |  45     [ "destroy" ], | 
 |  46   ], | 
 |  47 } | 
| OLD | NEW |