Extend timeout to check vm in onos-sfc testcase
authorwuwenbin2 <wuwenbin2@huawei.com>
Tue, 19 Jul 2016 11:50:03 +0000 (19:50 +0800)
committerwuwenbin2 <wuwenbin2@huawei.com>
Tue, 19 Jul 2016 11:56:49 +0000 (19:56 +0800)
Change-Id: I68ae154391d8098cab3d3cb05cebe6f1922ca701
Signed-off-by: wuwenbin2 <wuwenbin2@huawei.com>
testcases/Controllers/ONOS/Sfc/Sfc_fun.py

index b386ddb..28d83bb 100644 (file)
@@ -621,7 +621,7 @@ class Sfc_fun:
                 self.logger.info("\tPacket not received in Instance")
                 queue1.put("0")
 
-        def ping(ip, timeout=120):
+        def ping(ip, timeout=300):
             while True:
                 time.sleep(1)
                 self.logger.debug("Pinging %s. Waiting for response..." % ip)
@@ -638,7 +638,7 @@ class Sfc_fun:
         result0 = ping(self.vm_public_ip[0])
         result1 = ping(self.vm_public_ip[1])
         if result0 == 0 and result1 == 0:
-            time.sleep(120)
+            time.sleep(300)
             queue1 = Queue()
             p1 = Process(target=vm1,  args=(queue1, ))
             p1.start()