================
@@ -0,0 +1,102 @@
+"""
+Test case to verify stepping behavior into shared library functions.
+Specifically, this tests the scenario where a function's trampoline
+(PLT stub) has a different symbol at its file address,
+"""
+
+import lldb
+from lldbsuite.test.lldbtest import TestBase, line_number, configuration
+import lldbsuite.test.lldbutil as lldbutil
+
+
+class StepThroughTrampolineWithSymbol(TestBase):
+    SYMBOL_NAME = "lib_add"
+    FAKE_SYMBOL_NAME = "fake_lib_add"
+
+    def test(self):
----------------
adrian-prantl wrote:

should this be linux only?

https://github.com/llvm/llvm-project/pull/178695
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to