diff options
author | Juraj Linkeš <jlinkes@cisco.com> | 2017-03-14 13:31:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-14 13:31:26 +0000 |
commit | c11c0660c51dab7450a776cbb63381ad74cfacad (patch) | |
tree | 3d5d4c556661038198eb774f2847d40f468029ca /testing/robot/data | |
parent | 457756281a82c99d6e1ae261e8a6356eb01aa7f2 (diff) | |
parent | a717a49967f77ede476da582b6d3bb2c6359da1b (diff) |
Merge "Check for a flavor with hugepages"
Diffstat (limited to 'testing/robot/data')
-rw-r--r-- | testing/robot/data/test_data.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/robot/data/test_data.py b/testing/robot/data/test_data.py index 97aaf2b..86ca8fc 100644 --- a/testing/robot/data/test_data.py +++ b/testing/robot/data/test_data.py @@ -21,8 +21,9 @@ vm2_address = '192.168.10.6' port1_name = 'fds_smoke_port1_' + run_uuid port2_name = 'fds_smoke_port2_' + run_uuid subnet_cidr = '192.168.10.0/24' -vm_flavor = 'm1.small' -vm_image = 'cirros-0.3.4' +vm_flavor = 'nfv-fds' +vm_image = 'cirros-0.3.5' +image_path = '/home/opnfv/functest/data/cirros-0.3.5-x86_64-disk.img' userdata1 = "#!/bin/sh\n\nsudo ip a add {}/24 dev eth0\n while true; do echo curl_passed | nc -l -p 80; done\n".format(vm1_address) userdata2 = "#!/bin/sh\n\nsudo ip a add {}/24 dev eth0\nwhile true; do\n ping -c 1 {} 2>&1 >/dev/null\n " \ "RES=$?\n if [ \"Z$RES\" = \"Z0\" ] ; then\n echo 'ping PASSED'\n break\n else\n echo " \ |