aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools
diff options
context:
space:
mode:
authorMiroslav Miklus <mmiklus@cisco.com>2016-09-20 15:03:18 +0200
committerMiroslav Miklus <mmiklus@cisco.com>2016-09-21 11:56:04 +0000
commit27995a1fceb0b894c1647f559608d6bf04bd68af (patch)
treed9f648781ac58e7ac0d3c166444191a28f363add /resources/tools
parente08e9a7b1f539b69b286248165010c80803fc826 (diff)
Latency stream 10k > 9k, min_rate 5k > 10k
Change-Id: I077e3f2b6e5ee4346607b0e61d152e01b302e27d Signed-off-by: Miroslav Miklus <mmiklus@cisco.com>
Diffstat (limited to 'resources/tools')
-rwxr-xr-xresources/tools/t-rex/t-rex-stateless.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/tools/t-rex/t-rex-stateless.py b/resources/tools/t-rex/t-rex-stateless.py
index 867d0951b2..b23dfa8889 100755
--- a/resources/tools/t-rex/t-rex-stateless.py
+++ b/resources/tools/t-rex/t-rex-stateless.py
@@ -134,19 +134,19 @@ def create_streams_v46(base_pkt_a, base_pkt_b, vm1, vm2, frame_size):
max(0, fsize_no_fcs-len(base_pkt_b))))
lat_stream1 = STLStream(packet=pkt_lat_a,
flow_stats=STLFlowLatencyStats(pg_id=0),
- mode=STLTXCont(pps=10000))
+ mode=STLTXCont(pps=9000))
# second traffic stream with a phase of 10ns (inter stream gap)
lat_stream2 = STLStream(packet=pkt_lat_b,
isg=10.0,
flow_stats=STLFlowLatencyStats(pg_id=1),
- mode=STLTXCont(pps=10000))
+ mode=STLTXCont(pps=9000))
stream1 = STLStream(packet=pkt_a,
- mode=STLTXCont(pps=10000))
+ mode=STLTXCont(pps=9000))
# second traffic stream with a phase of 10ns (inter stream gap)
stream2 = STLStream(packet=pkt_b,
isg=10.0,
- mode=STLTXCont(pps=10000))
+ mode=STLTXCont(pps=9000))
elif type(frame_size) is str:
lat_stream1 = []
lat_stream2 = []