[Lldb-commits] [lldb] [LLDB] Add IsCoreDumping to ProcessInstanceInfo (PR #138580)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Tue May 6 02:50:33 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());
----------------
DavidSpickett wrote:

I presume this field has been around for a very long time, we don't expect any system to not have it?

https://github.com/llvm/llvm-project/pull/138580


More information about the lldb-commits mailing list