Adds packet count totals for transmit and receive to reporting
at the end of test execution.
JIRA: VSPERF-546
Change-Id: I51027fae109d0ea794c0db03f5781ddb2fcbb941
Signed-off-by: Christian Trautman <ctrautma@redhat.com>
"""Calculate results from Trex statistic
"""
result = OrderedDict()
+ result[ResultsConstants.TX_FRAMES] = (
+ stats["total"]["opackets"])
+ result[ResultsConstants.RX_FRAMES] = (
+ stats["total"]["ipackets"])
result[ResultsConstants.TX_RATE_FPS] = (
'{:.3f}'.format(
float(stats["total"]["tx_pps"])))