diff --git a/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py b/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py index 2ab6c7ed24710..12b321cf42778 100644 --- a/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py +++ b/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py @@ -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 @@ -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) @@ -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.