X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=testsuites%2Frubbos%2Frun_rubbos.py;h=d44898368fb0451156fe0cf7b6ea63a52f26a082;hb=fd9f0a7a1e95ff3346144bcb8660fe12721610cb;hp=4005f4ebd923cf20dcc92312b34ae98b29a36ec9;hpb=ace65ab15346359967748fa30dfb101213ea282d;p=bottlenecks.git diff --git a/testsuites/rubbos/run_rubbos.py b/testsuites/rubbos/run_rubbos.py index 4005f4eb..d4489836 100755 --- a/testsuites/rubbos/run_rubbos.py +++ b/testsuites/rubbos/run_rubbos.py @@ -26,7 +26,7 @@ from novaclient.client import Client as NovaClient parser = argparse.ArgumentParser() parser.add_argument("-c", "--conf", help="configuration files for the testcase, in yaml format", - default="/home/opnfv/bottlenecks/testsuites/rubbos/testcase_cfg/rubbos_1-1-0-1.yaml") + default="/home/opnfv/bottlenecks/testsuites/rubbos/testcase_cfg/rubbos_basic.yaml") args = parser.parse_args() #-------------------------------------------------- @@ -371,13 +371,15 @@ def main(): print "Cannot create instances, as Failed to create image(s)." exit (-1) - print "Wait 150 seconds after stack creation........." - time.sleep(150) + print "Wait 300 seconds after stack creation........." + time.sleep(300) reboot_instances() - time.sleep(30) + time.sleep(180) rubbos_run() + time.sleep(30) + rubbos_env_cleanup() if __name__=='__main__':