[llvm] Reapply: [lit] Avoid multiprocessing for -j1 runs (PR #179824)

Henrik G. Olsson via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 14 11:19:27 PST 2026


================
@@ -162,7 +162,13 @@ def startTimer(self):
 
     def _handleTimeoutReached(self):
         self._timeoutReached = True
-        self._kill()
+        try:
+            self._kill()
----------------
hnrklssn wrote:

Do we still need this after catching additional errors in `killProcessAndChildren()`? I'm a bit suspicious that the broad catch without any diagnostics could end up hiding other bugs.

https://github.com/llvm/llvm-project/pull/179824


More information about the llvm-commits mailing list