aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pkt_gen/dummy/dummy.py
diff options
context:
space:
mode:
authorMaryam Tahhan <maryam.tahhan@intel.com>2015-11-26 11:08:09 +0000
committerMaryam Tahhan <maryam.tahhan@intel.com>2015-12-08 17:41:12 +0000
commita05bfbc0bd553f761962634609d626085b3b3beb (patch)
treefdb99e0af6f64b9617e90d820dbc5425a24ff960 /tools/pkt_gen/dummy/dummy.py
parentde65a5105f62c56371249d9128e7b9a28759b40f (diff)
pkt_gen: rename throughput_tx_* to tx_rate_*
Change throughput_tx_* references to tx_rate_* so the results won't be confusing as part of the opnfv test dashboard when they become publicly available. Change-Id: Ie8cfae99a75497f15eb09d097c72c8a35df3b5f9 JIRA: VSPERF-135 Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com> Reviewed-by: Martin Klozik <martinx.klozik@intel.com> Reviewed-by: Ian Stokes <ian.stokes@intel.com> Reviewed-by: Al Morton <acmorton@att.com>
Diffstat (limited to 'tools/pkt_gen/dummy/dummy.py')
-rwxr-xr-xtools/pkt_gen/dummy/dummy.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/pkt_gen/dummy/dummy.py b/tools/pkt_gen/dummy/dummy.py
index 33c7eec9..dab59bea 100755
--- a/tools/pkt_gen/dummy/dummy.py
+++ b/tools/pkt_gen/dummy/dummy.py
@@ -154,13 +154,13 @@ class Dummy(trafficgen.ITrafficGenerator):
# builds results by using user-supplied values where possible
# and guessing remainder using available info
- result[ResultsConstants.THROUGHPUT_TX_FPS] = float(results[0]) / duration
+ result[ResultsConstants.TX_RATE_FPS] = float(results[0]) / duration
result[ResultsConstants.THROUGHPUT_RX_FPS] = float(results[1]) / duration
- result[ResultsConstants.THROUGHPUT_TX_MBPS] = (float(results[0]) \
+ result[ResultsConstants.TX_RATE_MBPS] = (float(results[0]) \
* framesize) / duration
result[ResultsConstants.THROUGHPUT_RX_MBPS] = (float(results[1]) \
* framesize) / duration
- result[ResultsConstants.THROUGHPUT_TX_PERCENT] = 0.0
+ result[ResultsConstants.TX_RATE_PERCENT] = 0.0
result[ResultsConstants.THROUGHPUT_RX_PERCENT] = 0.0
result[ResultsConstants.MIN_LATENCY_NS] = float(results[2])
result[ResultsConstants.MAX_LATENCY_NS] = float(results[3])
@@ -192,15 +192,15 @@ class Dummy(trafficgen.ITrafficGenerator):
# builds results by using user-supplied values where possible
# and guessing remainder using available info
- result[ResultsConstants.THROUGHPUT_TX_FPS] = float(results[0]) \
+ result[ResultsConstants.TX_RATE_FPS] = float(results[0]) \
/ duration
result[ResultsConstants.THROUGHPUT_RX_FPS] = float(results[1]) \
/ duration
- result[ResultsConstants.THROUGHPUT_TX_MBPS] = (float(results[0]) \
+ result[ResultsConstants.TX_RATE_MBPS] = (float(results[0]) \
* framesize) / duration
result[ResultsConstants.THROUGHPUT_RX_MBPS] = (float(results[1]) \
* framesize) / duration
- result[ResultsConstants.THROUGHPUT_TX_PERCENT] = 0.0
+ result[ResultsConstants.TX_RATE_PERCENT] = 0.0
result[ResultsConstants.THROUGHPUT_RX_PERCENT] = 0.0
result[ResultsConstants.MIN_LATENCY_NS] = float(results[2])
result[ResultsConstants.MAX_LATENCY_NS] = float(results[3])