[lldb/test] Fix TestFunctionStarts for eee887e0

This commit is contained in:
Pavel Labath 2021-10-29 14:42:54 +02:00
parent 2f353c040f
commit 8e3de91c07
1 changed files with 1 additions and 4 deletions

View File

@ -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,