Skip to content

Commit f9a12a2

Browse files
adrian-prantljasonmolenda
authored andcommitted
Increase timeout in gdbclientutils.py to decrease chance of test failing under ASAN.
llvm-svn: 374371 (cherry picked from commit cba575e)
1 parent 549c647 commit f9a12a2

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
@@ -298,7 +298,7 @@ def _run(self):
298298
try:
299299
# accept() is stubborn and won't fail even when the socket is
300300
# shutdown, so we'll use a timeout
301-
self._socket.settimeout(2.0)
301+
self._socket.settimeout(20.0)
302302
client, client_addr = self._socket.accept()
303303
self._client = client
304304
# The connected client inherits its timeout from self._socket,

0 commit comments

Comments
 (0)