Skip to content

Commit d302e33

Browse files
committed
[LLDB] Sleep for 5 second TestVSCode_launch test_progress_events
This increases sleep time to 5 seconds as the test still fails intermittently. If failure persists then we will disable/fix the test.
1 parent c115c28 commit d302e33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -485,8 +485,8 @@ def test_progress_events(self):
485485
# Iterate over all progress events and save all start and end IDs, and
486486
# remember any shared libraries that got symbol table parsing progress
487487
# events.
488-
# Sleep for 2 seconds to make sure progress_events gets populated
489-
time.sleep(2)
488+
# Sleep for 5 seconds to make sure progress_events gets populated
489+
time.sleep(5)
490490
for progress_event in self.vscode.progress_events:
491491
event_type = progress_event['event']
492492
if event_type == 'progressStart':

0 commit comments

Comments
 (0)