diff options
author | liang gao <jean.gaoliang@huawei.com> | 2016-07-20 06:27:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-07-20 06:27:50 +0000 |
commit | ebb9bc33134a90ea707f163950487056dc64e729 (patch) | |
tree | a41e270b43648e6d99f4836bfce778f0a88ea04b /tests/opnfv/test_cases | |
parent | e14fbf021bdf90dc160685c23b3cbbb320e9cfbf (diff) | |
parent | 7e9b180b0d10e84450eb2990549c02c106b0302e (diff) |
Merge "add support for suite to support constraints and task_args"
Diffstat (limited to 'tests/opnfv/test_cases')
-rw-r--r-- | tests/opnfv/test_cases/opnfv_yardstick_tc043.yaml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/opnfv/test_cases/opnfv_yardstick_tc043.yaml b/tests/opnfv/test_cases/opnfv_yardstick_tc043.yaml index 6f2952f97..d5754b966 100644 --- a/tests/opnfv/test_cases/opnfv_yardstick_tc043.yaml +++ b/tests/opnfv/test_cases/opnfv_yardstick_tc043.yaml @@ -3,14 +3,16 @@ # Measure latency between NFVI nodes using ping schema: "yardstick:task:0.1" - +{% set host = host or "node1.LF" %} +{% set target = target or "node2.LF" %} +{% set pod_info = pod_info or "etc/yardstick/nodes/compass_sclab_physical/pod.yaml" %} scenarios: - type: Ping options: packetsize: 100 - host: node4.LF - target: node5.LF + host: {{host}} + target: {{target}} runner: type: Duration @@ -25,5 +27,5 @@ scenarios: context: type: Node name: LF - file: etc/yardstick/nodes/compass_sclab_physical/pod.yaml + file: {{pod_info}} |