Skip to content

Commit cba575e

Browse files
committed
Increase timeout in gdbclientutils.py to decrease chance of test failing under ASAN.
llvm-svn: 374371
1 parent 7f0e7c0 commit cba575e

File tree

1 file changed

+1
-1
lines changed
  • lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def _run(self):
296296
try:
297297
# accept() is stubborn and won't fail even when the socket is
298298
# shutdown, so we'll use a timeout
299-
self._socket.settimeout(2.0)
299+
self._socket.settimeout(20.0)
300300
client, client_addr = self._socket.accept()
301301
self._client = client
302302
# The connected client inherits its timeout from self._socket,

0 commit comments

Comments
 (0)