Skip to content

Commit bb68e6d

Browse files
committed
[lldb] Increase MAX_ATTEMPTS in connect_to_debug_monitor()
See #118032 for details.
1 parent 31bde71 commit bb68e6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def connect_to_debug_monitor(self, attach_pid=None):
388388
# We're using a random port algorithm to try not to collide with other ports,
389389
# and retry a max # times.
390390
attempts = 0
391-
MAX_ATTEMPTS = 20
391+
MAX_ATTEMPTS = 30
392392

393393
while attempts < MAX_ATTEMPTS:
394394
server = self.launch_debug_monitor(attach_pid=attach_pid)

0 commit comments

Comments
 (0)