forked from OSchip/llvm-project
[lldb/test] Fix TestFunctionStarts for eee887e0
This commit is contained in:
parent
2f353c040f
commit
8e3de91c07
|
@ -37,10 +37,7 @@ class FunctionStartsTestCase(TestBase):
|
||||||
|
|
||||||
exe = self.getBuildArtifact(exe_name)
|
exe = self.getBuildArtifact(exe_name)
|
||||||
# Now strip the binary, but leave externals so we can break on dont_strip_me.
|
# Now strip the binary, but leave externals so we can break on dont_strip_me.
|
||||||
try:
|
self.runBuildCommand(["strip", "-u", "-x", "-S", exe])
|
||||||
fail_str = system([["strip", "-u", "-x", "-S", exe]])
|
|
||||||
except CalledProcessError as cmd_error:
|
|
||||||
self.fail("Strip failed: %d"%(cmd_error.returncode))
|
|
||||||
|
|
||||||
# Use a file as a synchronization point between test and inferior.
|
# Use a file as a synchronization point between test and inferior.
|
||||||
pid_file_path = lldbutil.append_to_process_working_directory(self,
|
pid_file_path = lldbutil.append_to_process_working_directory(self,
|
||||||
|
|
Loading…
Reference in New Issue