aboutsummaryrefslogtreecommitdiff
path: root/lldb
diff options
context:
space:
mode:
authorjimingham <jingham@apple.com>2024-01-16 17:54:12 -0800
committerGitHub <noreply@github.com>2024-01-16 17:54:12 -0800
commit705c5b80ace9d6fb1b9d1129ca1529d6645f1f24 (patch)
tree0e2888b34ca5efd1d894e7f2365a472421b08b6a /lldb
parent29b5f8f977af9b09aa8f56152baca04cf8750981 (diff)
downloadllvm-705c5b80ace9d6fb1b9d1129ca1529d6645f1f24.zip
llvm-705c5b80ace9d6fb1b9d1129ca1529d6645f1f24.tar.gz
llvm-705c5b80ace9d6fb1b9d1129ca1529d6645f1f24.tar.bz2
Add the Linux "you can use this binary" bits to run_to_source_breakpoint (#78377)
Follow-on to a4cd99ea8736eda2b8b4de34453f55008bcf9c30 - I forgot you have to add ANY shared library you want to use to extra_images...
Diffstat (limited to 'lldb')
-rw-r--r--lldb/test/API/functionalities/executable_first/TestExecutableFirst.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/API/functionalities/executable_first/TestExecutableFirst.py b/lldb/test/API/functionalities/executable_first/TestExecutableFirst.py
index 5c5573d..957628f 100644
--- a/lldb/test/API/functionalities/executable_first/TestExecutableFirst.py
+++ b/lldb/test/API/functionalities/executable_first/TestExecutableFirst.py
@@ -41,7 +41,8 @@ class TestExecutableIsFirst(TestBase):
def test_executable_is_first_during_run(self):
self.build()
(target, process, thread, bkpt) = lldbutil.run_to_source_breakpoint(
- self, "break after function call", lldb.SBFileSpec("main.cpp")
+ self, "break after function call", lldb.SBFileSpec("main.cpp"),
+ extra_images=["bar"]
)
first_module = target.GetModuleAtIndex(0)