[Lldb-commits] [lldb] [lldb-dap] Increase the evaluate timeout. (PR #214746)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Sun Aug 9 11:44:09 PDT 2026
================
@@ -27,6 +27,11 @@
#include <string>
namespace lldb_dap {
+#ifdef LLDB_CONFIGURATION_DEBUG
+inline constexpr uint32_t k_evaluate_timeout_ms = 500 * 10;
+#else
+inline constexpr uint32_t k_evaluate_timeout_ms = 500;
+#endif // LLDB_CONFIGURATION_DEBUG
----------------
JDevlieghere wrote:
I don't think this should be hardcoded or be unique to lldb-dap. Is the default not configurable in LLDB though a setting? The test suite should have one timeout that is shared across the test suite (motivation in https://github.com/llvm/llvm-project/issues/162523).
https://github.com/llvm/llvm-project/pull/214746
More information about the lldb-commits
mailing list