aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiroslav Miklus <mmiklus@cisco.com>2016-09-16 11:45:54 +0200
committerMiroslav Miklus <mmiklus@cisco.com>2016-09-19 14:46:59 +0000
commit94eed52dc1441b9b188edca5b620d457f7408326 (patch)
tree29acc4e9a0a421340e4fb97fa1615c68df1ad9cf
parent5ae4242df882c471065d39f43a8288b8510c9afc (diff)
Latency stream 1kpps -> 10kpps
Change-Id: Id16c54ba299fc757557503cdc3c63cd5c370c1a2 Signed-off-by: Miroslav Miklus <mmiklus@cisco.com> (cherry picked from commit 45543c4f56dd34b795776fad0d94bac75f0082f3)
-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 95c6cb150a..867d0951b2 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=1000))
+ mode=STLTXCont(pps=10000))
# 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=1000))
+ mode=STLTXCont(pps=10000))
stream1 = STLStream(packet=pkt_a,
- mode=STLTXCont(pps=1000))
+ mode=STLTXCont(pps=10000))
# second traffic stream with a phase of 10ns (inter stream gap)
stream2 = STLStream(packet=pkt_b,
isg=10.0,
- mode=STLTXCont(pps=1000))
+ mode=STLTXCont(pps=10000))
elif type(frame_size) is str:
lat_stream1 = []
lat_stream2 = []