diff options
Diffstat (limited to 'testcases')
-rwxr-xr-x | testcases/features/sfc/sfc.py | 6 | ||||
-rwxr-xr-x | testcases/features/sfc/sfc_colorado1.py | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/testcases/features/sfc/sfc.py b/testcases/features/sfc/sfc.py index ec1720003..4ece7d0ad 100755 --- a/testcases/features/sfc/sfc.py +++ b/testcases/features/sfc/sfc.py @@ -161,6 +161,12 @@ def main(): port_range_min=22, port_range_max=22) + _, custom_flv_id = os_utils.get_or_create_flavor( + 'custom', 1500, 10, 1, public=True) + if not custom_flv_id: + logger.error("Failed to create custom flavor") + sys.exit(1) + # boot INSTANCE logger.info("Creating instance '%s'..." % INSTANCE_NAME) logger.debug( diff --git a/testcases/features/sfc/sfc_colorado1.py b/testcases/features/sfc/sfc_colorado1.py index 103d10b18..5b04c32a9 100755 --- a/testcases/features/sfc/sfc_colorado1.py +++ b/testcases/features/sfc/sfc_colorado1.py @@ -160,6 +160,12 @@ def main(): port_range_min=22, port_range_max=22) + _, custom_flv_id = os_utils.get_or_create_flavor( + 'custom', 1500, 10, 1, public=True) + if not custom_flv_id: + logger.error("Failed to create custom flavor") + sys.exit(1) + iterator = 0 while(iterator < 6): # boot INSTANCE |