[Lldb-commits] [lldb] [lldb] Add linux test for the three-arg version of getProcFile (PR #146500)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 1 03:51:44 PDT 2025
================
@@ -21,9 +26,15 @@ TEST(Support, getProcFile_Pid) {
}
#endif // #ifndef __APPLE__
-#if defined(_AIX) && defined(LLVM_ENABLE_THREADING)
+#if (defined(_AIX) || defined(__linux__)) && defined(LLVM_ENABLE_THREADING)
----------------
labath wrote:
Good question. I assumed that's because llvm::get_threadid() is not implemented there or something, but that doesn't seem to be the case. In fact, it looks like LLVM_ENABLE_THREADING is not defined anywhere. Removing it.
https://github.com/llvm/llvm-project/pull/146500
More information about the lldb-commits
mailing list