diff options
author | Vratko Polak <vrpolak@cisco.com> | 2024-04-24 13:11:27 +0200 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2024-04-24 13:11:27 +0200 |
commit | b06f091ae65a7323231d84d188b863698169508b (patch) | |
tree | d85b07d0a0af17f1a868e8cb73096fa428ad4634 /GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py | |
parent | 163b0ddd64020535a65e8923491d568726936129 (diff) |
fix(ip6scale): Unify rnd profiles
Some were not even using STLVmFlowVarRepeatableRandom.
+ Simplify seed calculation.
Change-Id: If3211dd2336838ee1ad7137563ddf8cc90ebea00
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py')
-rw-r--r-- | GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py index e3d39cc31e..eba560ae6d 100644 --- a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py +++ b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py @@ -47,14 +47,12 @@ class TrafficStreams(TrafficStreamsScaleClass): "src_start_ip": "2100::1", "dst_start_ip": "2200::0", "dst_end_ip": "2200::270F", - "seed": 1 }, # Direction E --> W: { "src_start_ip": "2200::1", "dst_start_ip": "2100::0", "dst_end_ip": "2100::270F", - "seed": 2 } ] self.pkt_base = [] @@ -89,7 +87,7 @@ class TrafficStreams(TrafficStreamsScaleClass): min_value=base, max_value=base + count, size=8, - seed=self.pkt_data[i]["seed"], + seed=i + 1, limit=(2**24 - 1) ), STLVmWrFlowVar( |