Skip to content

Commit f97d447

Browse files
Increase the amount of time we wait for stopped tests to die (#3211)
At the current number, many PHP frameworks don't get shut down completely before the toolset gives up and prints an error message. These error messages are very alarming because they make it look like a port like port 8080 isn't being released. The new, higher number was enough to not see that error message in a test on ServerCentral with cakephp. Hopefully that means it's high enough for the rest of the PHP frameworks.
1 parent 0997b2b commit f97d447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolset/benchmark/benchmarker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ def __stop_test(self, test, out):
670670
slept = 0
671671
returnCode = None
672672
# Check once a second to see if TFBReaper has exited
673-
while(slept < 30 and returnCode is None):
673+
while(slept < 300 and returnCode is None):
674674
time.sleep(1)
675675
slept += 1
676676
returnCode = self.__process.poll()

0 commit comments

Comments
 (0)