diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-08-26 01:14:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-26 01:14:10 +0000 |
commit | a89e7fa4bf0bf8034daa529dfb70335c2dc6c0e5 (patch) | |
tree | 6fee469ee322189175c14a214b5f99d80a980d22 /tests/opnfv/test_cases/opnfv_yardstick_tc002.yaml | |
parent | a01f3f0d97778d4ec768d70ab531a420ae5a66a6 (diff) | |
parent | 0022e97b4fcb9b863f84dc704a9bb38c8021f6a9 (diff) |
Merge "improve tc002 to make packet size parameterize"
Diffstat (limited to 'tests/opnfv/test_cases/opnfv_yardstick_tc002.yaml')
-rw-r--r-- | tests/opnfv/test_cases/opnfv_yardstick_tc002.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/opnfv/test_cases/opnfv_yardstick_tc002.yaml b/tests/opnfv/test_cases/opnfv_yardstick_tc002.yaml index 58f5b783a..7f8c22943 100644 --- a/tests/opnfv/test_cases/opnfv_yardstick_tc002.yaml +++ b/tests/opnfv/test_cases/opnfv_yardstick_tc002.yaml @@ -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 %} |