[Lldb-commits] [lldb] [lldb] Step over non-lldb breakpoints (PR #174348)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 9 02:41:12 PST 2026
================
@@ -49,12 +48,17 @@ def test(self):
self.runCmd("ta v global")
self.assertEqual(
- process.GetSelectedThread().GetStopReason(), lldb.eStopReasonException
+ process.GetSelectedThread().GetStopReason(), platform_stop_reason
)
# "global" is now 10.
self.assertEqual(global_value.GetValueAsUnsigned(), 10)
+ # Change the handling of SIGILL on x86-64 Linux - do not pass it
+ # to the inferior, but stop and notify lldb.
----------------
DavidSpickett wrote:
Needs "otherwise \<thing\> happens." on the end.
https://github.com/llvm/llvm-project/pull/174348
More information about the lldb-commits
mailing list