[Lldb-commits] [lldb] [lldb-dap] Increase DAP default timeout (PR #170890)
Sergei Druzhkov via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 5 13:00:49 PST 2025
================
@@ -30,7 +31,7 @@
# 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)
+DEFAULT_TIMEOUT: Final[float] = 50 * (10 if ("ASAN_OPTIONS" in os.environ) else 1)
----------------
DrSergei wrote:
nit: maybe use `50.0` float literal
https://github.com/llvm/llvm-project/pull/170890
More information about the lldb-commits
mailing list