llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Omair Javaid (omjavaid)

<details>
<summary>Changes</summary>

TestQuitWithProcess.py is randomly failing on Arm Linux buildbot. The test 
validates LLDB's ability to quit cleanly killing active processes with a 
timeout value set to 15 seconds which could be insufficient for any resource 
limited platforms under heavy load.

This patch increase the timeout to 30 seconds to accommodate any resource 
limits.

https://lab.llvm.org/buildbot/#/builders/18/builds/24801

---
Full diff: https://github.com/llvm/llvm-project/pull/181660.diff


1 Files Affected:

- (modified) lldb/test/API/driver/quit_speed/TestQuitWithProcess.py (+2-2) 


``````````diff
diff --git a/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py 
b/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py
index 305e3cc397cf0..0e0f238fa394b 100644
--- a/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py
+++ b/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py
@@ -32,7 +32,7 @@ def test_run_quit(self):
         print("Got launch message")
         child.sendline("quit")
         print("sent quit")
-        child.expect(pexpect.EOF, timeout=15)
+        child.expect(pexpect.EOF, timeout=30)
 
     @skipIfAsan
     def test_run_quit_with_prompt(self):
@@ -57,4 +57,4 @@ def test_run_quit_with_prompt(self):
         child.expect(r".*LLDB will kill one or more processes.*")
         # add trailing space to the confirmation.
         child.sendline("yEs ")
-        child.expect(pexpect.EOF, timeout=15)
+        child.expect(pexpect.EOF, timeout=30)

``````````

</details>


https://github.com/llvm/llvm-project/pull/181660
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to