[Lldb-commits] [lldb] [lldb] [Mach-O] ProcessMachCore needs to strip TBI data from addrs (PR #84998)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 13 01:46:36 PDT 2024


================
@@ -0,0 +1,49 @@
+"""Test that lldb on Darwin ignores metadata in the top byte of addresses."""
+
+import os
+import re
+import subprocess
+
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+
+
+class TestTBIHonored(TestBase):
+    @no_debug_info_test
+    @skipUnlessDarwin
+    @skipIf(archs=no_match(["arm64", "arm64e"]))
----------------
DavidSpickett wrote:

This isn't a live process, do we need to be on Darwin arm64?

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


More information about the lldb-commits mailing list