summaryrefslogtreecommitdiff
path: root/deps/v8/tools/predictable_wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/predictable_wrapper.py')
-rw-r--r--deps/v8/tools/predictable_wrapper.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/tools/predictable_wrapper.py b/deps/v8/tools/predictable_wrapper.py
index cf7bf00b3f..c357c13b41 100644
--- a/deps/v8/tools/predictable_wrapper.py
+++ b/deps/v8/tools/predictable_wrapper.py
@@ -19,6 +19,7 @@ import sys
from testrunner.local import command
MAX_TRIES = 3
+TIMEOUT = 120
def main(args):
def allocation_str(stdout):
@@ -27,7 +28,7 @@ def main(args):
return line
return None
- cmd = command.Command(args[0], args[1:])
+ cmd = command.Command(args[0], args[1:], timeout=TIMEOUT)
previous_allocations = None
for run in range(1, MAX_TRIES + 1):