[LLDB] Sleep for 5 second TestVSCode_launch test_progress_events
authorMuhammad Omair Javaid <omair.javaid@linaro.org>
Fri, 2 Apr 2021 22:02:39 +0000 (03:02 +0500)
committerMuhammad Omair Javaid <omair.javaid@linaro.org>
Fri, 2 Apr 2021 22:04:37 +0000 (03:04 +0500)
This increases sleep time to 5 seconds as the test still fails
intermittently. If failure persists then we will disable/fix the
test.

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

index dc4549c..e69003c 100644 (file)
@@ -485,8 +485,8 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
         # Iterate over all progress events and save all start and end IDs, and
         # remember any shared libraries that got symbol table parsing progress
         # events.
-        # Sleep for 2 seconds to make sure progress_events gets populated
-        time.sleep(2)
+        # Sleep for 5 seconds to make sure progress_events gets populated
+        time.sleep(5)
         for progress_event in self.vscode.progress_events:
             event_type = progress_event['event']
             if event_type == 'progressStart':