summaryrefslogtreecommitdiff
path: root/Tools/Scripts/webkitpy/layout_tests/port/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Scripts/webkitpy/layout_tests/port/base.py')
-rwxr-xr-xTools/Scripts/webkitpy/layout_tests/port/base.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/base.py b/Tools/Scripts/webkitpy/layout_tests/port/base.py
index fbf0b930b..dda129f2f 100755
--- a/Tools/Scripts/webkitpy/layout_tests/port/base.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/base.py
@@ -1019,6 +1019,15 @@ class Port(object):
def default_configuration(self):
return self._config.default_configuration()
+ def process_kill_time(self):
+ """ Returns the amount of time in seconds to wait before killing the process.
+
+ Within server_process.stop there is a time delta before the test is explictly
+ killed. By changing this the time can be extended in case the process needs
+ more time to cleanly exit on its own.
+ """
+ return 3.0
+
#
# PROTECTED ROUTINES
#