We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e01ff82 commit d38ea8cCopy full SHA for d38ea8c
lldb/test/API/tools/lldb-server/attach-wait/TestGdbRemoteAttachWait.py
@@ -17,7 +17,10 @@ def _set_up_inferior(self):
17
# Use a shim to ensure that the process is ready to be attached from
18
# the get-go.
19
self._exe_to_run = "shim"
20
- self._run_args = [self.getBuildArtifact(self._exe_to_attach)]
+ self._exe_to_attach = lldbutil.install_to_target(
21
+ self, self.getBuildArtifact(self._exe_to_attach)
22
+ )
23
+ self._run_args = [self._exe_to_attach]
24
self.build(dictionary={"EXE": self._exe_to_run, "CXX_SOURCES": "shim.cpp"})
25
else:
26
self._exe_to_run = self._exe_to_attach
0 commit comments