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 over an open 802.11g connection w/ power save enabled. |
| 6 |
| 7 { "name":"Perf11gPS", |
| 8 "steps":[ # Channel 1 |
| 9 [ "create", { "type":"hostap" } ], |
| 10 [ "config", { "channel":"2412", "mode":"11g" } ], |
| 11 [ "connect", { "security":"none" } ], |
| 12 |
| 13 [ "client_powersave_on" ], |
| 14 |
| 15 [ "client_iperf", { "tcp":None, "test_time":"60" } ], |
| 16 [ "server_iperf", { "tcp":None, "test_time":"60" } ], |
| 17 |
| 18 [ "client_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 19 [ "server_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 20 |
| 21 [ "client_iperf", { "udp":None, "bandwidth":"15m" } ], |
| 22 [ "server_iperf", { "udp":None, "bandwidth":"15m" } ], |
| 23 |
| 24 [ "client_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 25 [ "server_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 26 |
| 27 [ "client_iperf", { "udp":None, "bandwidth":"25m" } ], |
| 28 [ "server_iperf", { "udp":None, "bandwidth":"25m" } ], |
| 29 |
| 30 [ "client_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 31 [ "server_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 32 |
| 33 [ "client_iperf", { "udp":None, "bandwidth":"36m" } ], |
| 34 [ "server_iperf", { "udp":None, "bandwidth":"36m" } ], |
| 35 |
| 36 [ "client_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 37 [ "server_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 38 |
| 39 # TODO(sleffler) multiple streams |
| 40 # TODO(sleffler) mixed streams |
| 41 |
| 42 [ "destroy" ], |
| 43 ], |
| 44 } |
OLD | NEW |