From f5cfe38c237484c296c25c33de0911bd32f4ad16 Mon Sep 17 00:00:00 2001 From: Roy Shi Date: Wed, 10 Sep 2025 11:24:19 -0700 Subject: [PATCH] [lldb-dap] Fix test: TestDAP_server.py --- lldb/test/API/tools/lldb-dap/server/TestDAP_server.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.