improve tc002 to make packet size parameterize 67/39967/1
authorrexlee8776 <limingjiang@huawei.com>
Wed, 23 Aug 2017 08:56:20 +0000 (08:56 +0000)
committerrexlee8776 <limingjiang@huawei.com>
Wed, 23 Aug 2017 08:56:20 +0000 (08:56 +0000)
JIRA: YARDSTICK-793

Change-Id: I95d014ad3d2e19dd2df1f5e72d994da2f44d4544
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
tests/opnfv/test_cases/opnfv_yardstick_tc002.yaml

index 58f5b78..7f8c229 100644 (file)
@@ -18,13 +18,14 @@ description: >
 {% set provider = provider or none %}
 {% set physical_network = physical_network or 'physnet1' %}
 {% set segmentation_id = segmentation_id or none %}
+{% set packetsize = packetsize or 100 %}
 
 scenarios:
 {% for i in range(2) %}
 -
   type: Ping
   options:
-    packetsize: 100
+    packetsize: {{packetsize}}
   host: athena.demo
   target: ares.demo
 
@@ -64,4 +65,4 @@ context:
         {% if segmentation_id %}
       segmentation_id: {{segmentation_id}}
         {% endif %}
-      {% endif %}
\ No newline at end of file
+      {% endif %}