aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark
diff options
context:
space:
mode:
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2018-08-30 16:13:07 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-08-30 16:13:07 +0000
commit7373f7063e234714fc14e1c59b1b24d018e632c0 (patch)
treee102c11758fdfea9d756b4daeb08a791357691e3 /yardstick/benchmark
parent4e2e9ebce2eb642480af80cdb63d442dfb81cd04 (diff)
parent5dad388ef2822a6d10b06cf724a3270741c6af2c (diff)
Merge "Add source and destination seed value in IXIA RFC2544"
Diffstat (limited to 'yardstick/benchmark')
-rw-r--r--yardstick/benchmark/scenarios/networking/vnf_generic.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/yardstick/benchmark/scenarios/networking/vnf_generic.py b/yardstick/benchmark/scenarios/networking/vnf_generic.py
index 4884e57a8..6d68c5e64 100644
--- a/yardstick/benchmark/scenarios/networking/vnf_generic.py
+++ b/yardstick/benchmark/scenarios/networking/vnf_generic.py
@@ -120,8 +120,11 @@ class NetworkServiceTestCase(scenario_base.Scenario):
if "count" in fflow:
flow["count"] = fflow["count"]
- if "seed" in fflow:
- flow["seed"] = fflow["seed"]
+ if "srcseed" in fflow:
+ flow["srcseed"] = fflow["srcseed"]
+
+ if "dstseed" in fflow:
+ flow["dstseed"] = fflow["dstseed"]
except KeyError:
flow = {}