summaryrefslogtreecommitdiffstats
path: root/testcases/OpenStack
diff options
context:
space:
mode:
authorboucherv <valentin.boucher@orange.com>2016-08-11 09:06:09 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-11 09:06:09 +0000
commitfe1cdb02640ddf9baae6d09a949a4648264dd482 (patch)
tree8b8c14c250a929cebb73f20ff6884fc714623296 /testcases/OpenStack
parente648bdc9f4f52208a44936fd8732afbe256a20c2 (diff)
parent7eefbe8f7ec52d727e8e504e4ddd4ddb57cf569e (diff)
Merge "Create config_functest patch to update the conf with scenario"
Diffstat (limited to 'testcases/OpenStack')
-rwxr-xr-xtestcases/OpenStack/rally/run_rally-cert.py3
-rwxr-xr-xtestcases/OpenStack/tempest/run_tempest.py3
-rwxr-xr-xtestcases/OpenStack/vPing/vPing_ssh.py3
-rwxr-xr-xtestcases/OpenStack/vPing/vPing_userdata.py3
4 files changed, 8 insertions, 4 deletions
diff --git a/testcases/OpenStack/rally/run_rally-cert.py b/testcases/OpenStack/rally/run_rally-cert.py
index 1f1214e03..92dbddff6 100755
--- a/testcases/OpenStack/rally/run_rally-cert.py
+++ b/testcases/OpenStack/rally/run_rally-cert.py
@@ -410,7 +410,8 @@ def main():
GLANCE_IMAGE_PATH))
image_id = os_utils.create_glance_image(glance_client,
GLANCE_IMAGE_NAME,
- GLANCE_IMAGE_PATH)
+ GLANCE_IMAGE_PATH,
+ GLANCE_IMAGE_FORMAT)
if not image_id:
logger.error("Failed to create the Glance image...")
exit(-1)
diff --git a/testcases/OpenStack/tempest/run_tempest.py b/testcases/OpenStack/tempest/run_tempest.py
index 562249b23..3a8d8d72a 100755
--- a/testcases/OpenStack/tempest/run_tempest.py
+++ b/testcases/OpenStack/tempest/run_tempest.py
@@ -168,7 +168,8 @@ def create_tempest_resources():
GLANCE_IMAGE_PATH))
image_id = os_utils.create_glance_image(glance_client,
GLANCE_IMAGE_NAME,
- GLANCE_IMAGE_PATH)
+ GLANCE_IMAGE_PATH,
+ GLANCE_IMAGE_FORMAT)
if not image_id:
logger.error("Failed to create a Glance image...")
exit(-1)
diff --git a/testcases/OpenStack/vPing/vPing_ssh.py b/testcases/OpenStack/vPing/vPing_ssh.py
index 4aab6195a..810f286f1 100755
--- a/testcases/OpenStack/vPing/vPing_ssh.py
+++ b/testcases/OpenStack/vPing/vPing_ssh.py
@@ -192,7 +192,8 @@ def main():
GLANCE_IMAGE_PATH))
image_id = os_utils.create_glance_image(glance_client,
GLANCE_IMAGE_NAME,
- GLANCE_IMAGE_PATH)
+ GLANCE_IMAGE_PATH,
+ GLANCE_IMAGE_FORMAT)
if not image_id:
logger.error("Failed to create a Glance image...")
exit(EXIT_CODE)
diff --git a/testcases/OpenStack/vPing/vPing_userdata.py b/testcases/OpenStack/vPing/vPing_userdata.py
index b6e3fe11a..dd707bc8f 100755
--- a/testcases/OpenStack/vPing/vPing_userdata.py
+++ b/testcases/OpenStack/vPing/vPing_userdata.py
@@ -192,7 +192,8 @@ def main():
GLANCE_IMAGE_PATH))
image_id = os_utils.create_glance_image(glance_client,
GLANCE_IMAGE_NAME,
- GLANCE_IMAGE_PATH)
+ GLANCE_IMAGE_PATH,
+ GLANCE_IMAGE_FORMAT)
if not image_id:
logger.error("Failed to create a Glance image...")
exit(EXIT_CODE)