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.11a connection |
| 6 # w/ power save disabled. |
| 7 |
| 8 { "name":"Perf11aPS", |
| 9 "steps":[ # Channel [1/11g,50/HT20] |
| 10 [ "create", { "type":"hostap" } ], |
| 11 [ "config", { "channel":"5240", "mode":"11a" } ], |
| 12 [ "connect", { "security":"none" } ], |
| 13 |
| 14 [ "client_powersave_on" ], |
| 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":"15m" } ], |
| 23 [ "server_iperf", { "udp":None, "bandwidth":"15m" } ], |
| 24 |
| 25 [ "client_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 26 [ "server_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 27 |
| 28 [ "client_iperf", { "udp":None, "bandwidth":"25m" } ], |
| 29 [ "server_iperf", { "udp":None, "bandwidth":"25m" } ], |
| 30 |
| 31 [ "client_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 32 [ "server_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 33 |
| 34 [ "client_iperf", { "udp":None, "bandwidth":"36m" } ], |
| 35 [ "server_iperf", { "udp":None, "bandwidth":"36m" } ], |
| 36 |
| 37 [ "client_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 38 [ "server_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 39 |
| 40 [ "destroy" ], |
| 41 ], |
| 42 } |
OLD | NEW |