Skip to content

Commit f5cfe38

Browse files
committed
[lldb-dap] Fix test: TestDAP_server.py
1 parent 9fdf2c7 commit f5cfe38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/test/API/tools/lldb-dap/server/TestDAP_server.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def test_connection_timeout_at_server_start(self):
127127
self.start_server(
128128
connection="listen://localhost:0",
129129
connection_timeout=1,
130-
wait_seconds_for_termination=2,
130+
wait_seconds_for_termination=5,
131131
)
132132

133133
@skipIfWindows
@@ -139,7 +139,7 @@ def test_connection_timeout_long_debug_session(self):
139139
(_, connection) = self.start_server(
140140
connection="listen://localhost:0",
141141
connection_timeout=1,
142-
wait_seconds_for_termination=2,
142+
wait_seconds_for_termination=5,
143143
)
144144
# The connection timeout should not cut off the debug session
145145
self.run_debug_session(connection, "Alice", 1.5)
@@ -153,7 +153,7 @@ def test_connection_timeout_multiple_sessions(self):
153153
(_, connection) = self.start_server(
154154
connection="listen://localhost:0",
155155
connection_timeout=1,
156-
wait_seconds_for_termination=2,
156+
wait_seconds_for_termination=5,
157157
)
158158
time.sleep(0.5)
159159
# Should be able to connect to the server.

0 commit comments

Comments
 (0)