https://github.com/omjavaid created https://github.com/llvm/llvm-project/pull/181660
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 >From 456f039e187a7bd33e72db32af42e6237a15b1f9 Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid <[email protected]> Date: Mon, 16 Feb 2026 17:42:15 +0500 Subject: [PATCH] [lldb][test] TestQuitWithProcess: Increase timeout to fix ARM flakiness 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 --- lldb/test/API/driver/quit_speed/TestQuitWithProcess.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
