Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lldb/test/API/tools/lldb-dap/server/TestDAP_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def test_connection_timeout_at_server_start(self):
self.start_server(
connection="listen://localhost:0",
connection_timeout=1,
wait_seconds_for_termination=2,
wait_seconds_for_termination=5,
)

@skipIfWindows
Expand All @@ -139,7 +139,7 @@ def test_connection_timeout_long_debug_session(self):
(_, connection) = self.start_server(
connection="listen://localhost:0",
connection_timeout=1,
wait_seconds_for_termination=2,
wait_seconds_for_termination=5,
)
# The connection timeout should not cut off the debug session
self.run_debug_session(connection, "Alice", 1.5)
Expand All @@ -153,7 +153,7 @@ def test_connection_timeout_multiple_sessions(self):
(_, connection) = self.start_server(
connection="listen://localhost:0",
connection_timeout=1,
wait_seconds_for_termination=2,
wait_seconds_for_termination=5,
)
time.sleep(0.5)
# Should be able to connect to the server.
Expand Down
Loading