summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/controller/sw_perf/README
diff options
context:
space:
mode:
authorYiting.Li <liyiting@huawei.com>2016-01-22 10:46:57 +0800
committerJun Li <matthew.lijun@huawei.com>2016-01-25 01:30:21 +0000
commit07fa6d43cf0ac1baf3cd67e741f474273fbd387d (patch)
tree17ed17fa64b121bd5189070f46e14db336a50bd4 /vstf/vstf/controller/sw_perf/README
parent486719ea0024e683f4e90832e647becf3d5d5ab7 (diff)
JIRA: BOTTLENECKS-29
Add a end-to-end test framework delete the wrong author flag and fix some missing of the copy right Change-Id: Ia9f72ff3e523f05cd0d5e32e3349a3f6acad5bd1 Signed-off-by: Yiting.Li <liyiting@huawei.com> (cherry picked from commit 0ea3b714615e7a9383048a13695bbe4d62f028fd)
Diffstat (limited to 'vstf/vstf/controller/sw_perf/README')
-rwxr-xr-xvstf/vstf/controller/sw_perf/README39
1 files changed, 0 insertions, 39 deletions
diff --git a/vstf/vstf/controller/sw_perf/README b/vstf/vstf/controller/sw_perf/README
deleted file mode 100755
index 02844a3e..00000000
--- a/vstf/vstf/controller/sw_perf/README
+++ /dev/null
@@ -1,39 +0,0 @@
-Tree
-
-|--- flow_producer.py
-|--- model.py
-|--- performance.py
-|--- perf_provider.py
-|--- raw_data.py
-
-Entry:
- performance.py
- usage: performance.py [-h] [-case CASE]
- [-tool {pktgen,netperf,qperf,iperf,netmap}]
- [-protocol {tcp,udp}] [-profile {rdp,fastlink,l2switch}]
- [-type {throughput,latency,frameloss}] [-sizes SIZES]
- [--monitor MONITOR]
-
- optional arguments:
- -h, --help show this help message and exit
- -case CASE test case like Ti-1, Tn-1, Tnv-1, Tu-1...
- -tool {pktgen,netperf,qperf,iperf,netmap}
- -protocol {tcp,udp}
- -profile {rdp,fastlink,l2switch}
- -type {throughput,latency,frameloss}
- -sizes SIZES test size list "64 128"
- --monitor MONITOR which ip to be monitored
-
-Interface:
- usage:
- conn = Server(host=args.monitor)
- flows_settings = FlowsSettings()
- tool_settings = ToolSettings()
- tester_settings = TesterSettings()
- flow_producer = FlowsProducer(conn, flows_settings)
- provider = PerfProvider(flows_settings.settings, tool_settings.settings, tester_settings.settings)
- perf = Performance(conn, provider)
- flow_producer.create(scenario, case)
- LOG.info(flows_settings.settings())
- result = perf.run(tool, protocol, type, sizes)
-