aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/network_services
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2017-09-01 23:15:37 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-01 23:15:37 +0000
commit38033471035b6301cac2c49237a0b60727b213a7 (patch)
tree2c7f7daf06617629df1ef28c2504f566093c09f4 /yardstick/network_services
parent3bfed58fb8986d7c3bb01443c3db51b6b087a8cb (diff)
parentb171392f75b2e2f9abb1834c84e752931afaace9 (diff)
Merge "Adding support for updating the count/packetsize for given testcase"
Diffstat (limited to 'yardstick/network_services')
-rw-r--r--yardstick/network_services/traffic_profile/ixia_rfc2544.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/yardstick/network_services/traffic_profile/ixia_rfc2544.py b/yardstick/network_services/traffic_profile/ixia_rfc2544.py
index ba532b820..36a464e2f 100644
--- a/yardstick/network_services/traffic_profile/ixia_rfc2544.py
+++ b/yardstick/network_services/traffic_profile/ixia_rfc2544.py
@@ -61,6 +61,7 @@ class IXIARFC2544Profile(TrexProfile):
traffic['outer_l3']['dstip4'] = dstip4.split("-")[0]
traffic['outer_l3']['type'] = key
+ traffic['outer_l3']['count'] = value['outer_l3v4']['count']
# outer_l4
traffic['outer_l4'] = value['outer_l4']
index = index + 1