================
@@ -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
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to