aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pkt_gen/ixia
diff options
context:
space:
mode:
authorRadek Zetik <radekx.zetik@intel.com>2016-02-03 11:28:51 +0000
committerMaryam Tahhan <maryam.tahhan@intel.com>2016-02-17 10:13:04 +0000
commit3d14c60db72806048d6c345a92c7c715d6457daa (patch)
treeaa9db9b2e1c77d8bb4316abbcbd6ff819f3d52c0 /tools/pkt_gen/ixia
parentf4f9283995ee43412f9f34d69cfeea43ddaf1612 (diff)
VSPERF: Report percentage frameloss from IXIA/IXNET
The patch introduces frame_loss_percent result value. The implementation is done for Ixia and IxNet traffic generators. The value is visible in list of result values at the end of the test, in csv, rst and md files. JIRA: VSPERF-201 Change-Id: I9b6795d427b199cb62ed66b7a137e412e36dc757 Signed-off-by: Radek Zetik <radekx.zetik@intel.com> Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com> Reviewed-by: Brian Castelli <brian.castelli@spirent.com> Reviewed-by: Al Morton <acmorton@att.com> Reviewed-by: Tv Rao <tv.rao@freescale.com> Reviewed-by: Billy O Mahony <billy.o.mahony@intel.com>
Diffstat (limited to 'tools/pkt_gen/ixia')
-rwxr-xr-xtools/pkt_gen/ixia/ixia.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/pkt_gen/ixia/ixia.py b/tools/pkt_gen/ixia/ixia.py
index 10ed1fb2..b9b3dd17 100755
--- a/tools/pkt_gen/ixia/ixia.py
+++ b/tools/pkt_gen/ixia/ixia.py
@@ -289,6 +289,10 @@ class Ixia(trafficgen.ITrafficGenerator):
"""
assert len(result) == 8 # fail-fast if underlying Tcl code changes
+ if float(result[0]) == 0:
+ loss_rate = 100
+ else:
+ loss_rate = (float(result[0]) - float(result[1])) / float(result[0]) * 100
result_dict = OrderedDict()
# drop the first 4 elements as we don't use/need them. In
# addition, IxExplorer does not support latency or % line rate
@@ -297,6 +301,7 @@ class Ixia(trafficgen.ITrafficGenerator):
result_dict[ResultsConstants.TX_RATE_FPS] = result[5]
result_dict[ResultsConstants.THROUGHPUT_RX_MBPS] = result[6]
result_dict[ResultsConstants.TX_RATE_MBPS] = result[7]
+ result_dict[ResultsConstants.FRAME_LOSS_PERCENT] = loss_rate
result_dict[ResultsConstants.TX_RATE_PERCENT] = \
ResultsConstants.UNKNOWN_VALUE
result_dict[ResultsConstants.THROUGHPUT_RX_PERCENT] = \