Commit d721fd41 authored by Benjamin Blanc's avatar Benjamin Blanc

scalability: runScalabilityTestSuite: move time.sleep() position.

In order to temporize the main while loop.
parent c89b5a4d
...@@ -278,10 +278,10 @@ class ScalabilityLauncher(object): ...@@ -278,10 +278,10 @@ class ScalabilityLauncher(object):
while time.time()-start_time < max_time: while time.time()-start_time < max_time:
time.sleep(5)
current_test = self.getNextTest() current_test = self.getNextTest()
if current_test == None: if current_test == None:
self.log("No Test Case Ready") self.log("No Test Case Ready")
time.sleep(5)
else: else:
error_count = 1 error_count = 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