[Lldb-commits] [lldb] Define Telemetry plugin for LLDB. (PR #126588)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 13 02:21:03 PST 2025
================
@@ -79,3 +79,7 @@ add_subdirectory(ValueObject)
if(LLDB_CAN_USE_DEBUGSERVER AND LLDB_TOOL_DEBUGSERVER_BUILD AND NOT LLDB_USE_SYSTEM_DEBUGSERVER)
add_subdirectory(debugserver)
endif()
+
+if(LLVM_BUILD_TELEMETRY)
+ add_subdirectory(telemetry)
+endif()
----------------
labath wrote:
Our usual pattern is to have the unit test tree mirror the source tree, which would put these tests at `unittests/Core/TelemetryTest.cpp`. The debugserver directory is an exception I'd rather not emulate. I can imagine doing it differently if the tests get rather big, or there are some other issues which make collocating this with the rest of Core tests difficult, but I don't think we're there yet.
https://github.com/llvm/llvm-project/pull/126588
More information about the lldb-commits
mailing list