[Lldb-commits] [lldb] [lldb-dap] Unify the timeouts for the DAP tests (PR #163292)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 15 16:38:27 PDT 2025


================
@@ -27,6 +27,10 @@
     Literal,
 )
 
+# set timeout based on whether ASAN was enabled or not. Increase
+# timeout by a factor of 10 if ASAN is enabled.
+DEFAULT_TIMEOUT = 10 * (10 if ("ASAN_OPTIONS" in os.environ) else 1)
----------------
JDevlieghere wrote:

Yeah, this probably warrants a centralized helper, maybe do 2x for debug builds, 10x for sanitized builds, etc.

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


More information about the lldb-commits mailing list