Commit 8cbe95f3 authored by Benjamin Blanc's avatar Benjamin Blanc

Up

parent a4340eaf
...@@ -119,6 +119,7 @@ class ScalabilityTestRunner(): ...@@ -119,6 +119,7 @@ class ScalabilityTestRunner():
""" """
# Define how many time this method can take # Define how many time this method can take
max_time = 3600*10*1.0 # 10 hours max_time = 3600*10*1.0 # 10 hours
interval_time = 30
start_time = time.time() start_time = time.time()
# #
if self.testnode.test_suite_portal.isValidatedMaster( if self.testnode.test_suite_portal.isValidatedMaster(
...@@ -156,9 +157,9 @@ class ScalabilityTestRunner(): ...@@ -156,9 +157,9 @@ class ScalabilityTestRunner():
while ( self.remainSoftwareToInstall() while ( self.remainSoftwareToInstall()
and (max_time > (time.time()-start_time))): and (max_time > (time.time()-start_time))):
self.testnode.log("Master testnode is waiting\ self.testnode.log("Master testnode is waiting\
for the end of all software installation (%ss).", for the end of all software installation (for %ss).",
str(int(time.time()-start_time))) str(int(time.time()-start_time)))
time.sleep(15) time.sleep(interval_time)
# We were wainting for too long time, that's a failure. # We were wainting for too long time, that's a failure.
if self.remainSoftwareToInstall() : if self.remainSoftwareToInstall() :
return {'status_code' : 1} return {'status_code' : 1}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment