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

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 15 16:34:28 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)
----------------
ashgti wrote:

There is one other case where we may want a longer timeout.

When we're using a `CMAKE_BUILD_TYPE=Debug` the tests do have more timeouts. I think we've tagged a few places, but we could also increase the timeout for those as well.

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


More information about the lldb-commits mailing list