[Lldb-commits] [lldb] [LLDB] Add IsCoreDumping to ProcessInstanceInfo (PR #138580)
Jacob Lalonde via lldb-commits
lldb-commits at lists.llvm.org
Tue May 6 08:46:49 PDT 2025
================
@@ -115,5 +115,8 @@ TEST_F(HostTest, GetProcessInfoSetsPriority) {
}
ASSERT_TRUE(Info.IsZombie().has_value());
ASSERT_FALSE(Info.IsZombie().value());
+
+ ASSERT_TRUE(Info.IsCoreDumping().has_value());
+ ASSERT_FALSE(Info.IsCoreDumping().value());
----------------
Jlalond wrote:
Since 4.15, so around 2018 was the end of LTO for that version. I think we're safe to assume it's going to be ubiquitous on our test hosts. As for customers, we would just fail to read it
https://github.com/llvm/llvm-project/pull/138580
More information about the lldb-commits
mailing list