[Lldb-commits] [lldb] [lldb] convert jit-loader_rtdyld_elf.test to an API test (PR #170333)

Charles Zablit via lldb-commits lldb-commits at lists.llvm.org
Tue Dec 9 08:40:38 PST 2025


================
@@ -0,0 +1,55 @@
+"""
+Test that pending breakpoints resolve for JITted code with mcjit and rtdyld.
+"""
+
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+
+import shutil
+
+
+class TestJitBreakpoint(TestBase):
+    def setUp(self):
+        TestBase.setUp(self)
+        self.ll = self.getBuildArtifact("jitbp.ll")
+
+    @skipUnlessArch("x86_64")
----------------
charles-zablit wrote:

I have added `@skipUnlessCompilerIsClang`

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


More information about the lldb-commits mailing list