From e1b54d27342edb88879fb1d32def49abb603a32a Mon Sep 17 00:00:00 2001 From: wuwenbin2 Date: Tue, 19 Jul 2016 19:50:03 +0800 Subject: Extend timeout to check vm in onos-sfc testcase Change-Id: I68ae154391d8098cab3d3cb05cebe6f1922ca701 Signed-off-by: wuwenbin2 --- testcases/Controllers/ONOS/Sfc/Sfc_fun.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testcases') diff --git a/testcases/Controllers/ONOS/Sfc/Sfc_fun.py b/testcases/Controllers/ONOS/Sfc/Sfc_fun.py index b386ddbc6..28d83bbfd 100644 --- a/testcases/Controllers/ONOS/Sfc/Sfc_fun.py +++ b/testcases/Controllers/ONOS/Sfc/Sfc_fun.py @@ -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() -- cgit 1.2.3-korg