| 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 open 802.11n/HT40 connections in the 2.4GHz band | 
 |   6 # w/ power save enabled. | 
 |   7  | 
 |   8 { "name":"Perf24HT40_PS", | 
 |   9   "steps":[             # Channel 6 | 
 |  10     [ "create",         { "type":"hostap" } ], | 
 |  11     [ "config",         { "channel":"2437", "ht40":None, "puren":None } ], | 
 |  12     [ "connect",        { "security":"none" } ], | 
 |  13  | 
 |  14     [ "client_powersave_off" ], | 
 |  15  | 
 |  16     [ "client_iperf",   { "tcp":None, "test_time":"60" } ], | 
 |  17     [ "server_iperf",   { "tcp":None, "test_time":"60" } ], | 
 |  18  | 
 |  19     [ "client_iperf",   { "udp":None, "bandwidth":"10m" } ], | 
 |  20     [ "server_iperf",   { "udp":None, "bandwidth":"10m" } ], | 
 |  21  | 
 |  22     [ "client_iperf",   { "udp":None, "bandwidth":"20m" } ], | 
 |  23     [ "server_iperf",   { "udp":None, "bandwidth":"20m" } ], | 
 |  24  | 
 |  25     [ "client_iperf",   { "udp":None, "bandwidth":"30m" } ], | 
 |  26     [ "server_iperf",   { "udp":None, "bandwidth":"30m" } ], | 
 |  27  | 
 |  28     [ "client_iperf",   { "udp":None, "bandwidth":"40m" } ], | 
 |  29     [ "server_iperf",   { "udp":None, "bandwidth":"40m" } ], | 
 |  30  | 
 |  31     [ "client_iperf",   { "udp":None, "bandwidth":"50m" } ], | 
 |  32     [ "server_iperf",   { "udp":None, "bandwidth":"50m" } ], | 
 |  33  | 
 |  34     [ "client_iperf",   { "udp":None, "bandwidth":"60m" } ], | 
 |  35     [ "server_iperf",   { "udp":None, "bandwidth":"60m" } ], | 
 |  36  | 
 |  37     [ "client_iperf",   { "udp":None, "bandwidth":"70m" } ], | 
 |  38     [ "server_iperf",   { "udp":None, "bandwidth":"70m" } ], | 
 |  39  | 
 |  40     [ "client_iperf",   { "udp":None, "bandwidth":"80m" } ], | 
 |  41     [ "server_iperf",   { "udp":None, "bandwidth":"80m" } ], | 
 |  42  | 
 |  43     [ "client_iperf",   { "udp":None, "bandwidth":"90m" } ], | 
 |  44     [ "server_iperf",   { "udp":None, "bandwidth":"90m" } ], | 
 |  45  | 
 |  46     [ "client_iperf",   { "udp":None, "bandwidth":"100m" } ], | 
 |  47     [ "server_iperf",   { "udp":None, "bandwidth":"100m" } ], | 
 |  48  | 
 |  49     [ "client_iperf",   { "udp":None, "bandwidth":"110m" } ], | 
 |  50     [ "server_iperf",   { "udp":None, "bandwidth":"110m" } ], | 
 |  51  | 
 |  52     [ "client_iperf",   { "udp":None, "bandwidth":"120m" } ], | 
 |  53     [ "server_iperf",   { "udp":None, "bandwidth":"120m" } ], | 
 |  54  | 
 |  55     [ "destroy" ], | 
 |  56   ], | 
 |  57 } | 
| OLD | NEW |