diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2024-01-26 20:37:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-26 20:37:44 -0800 |
commit | 75952873036fc9989fcf12c526d1a2deaeef596a (patch) | |
tree | 87d1cc9cceba42ec1d3d3ffba1f24cd87eca51d3 /lldb/packages/Python/lldbsuite/test/lldbtest.py | |
parent | 701ec45f2fc026d97c3a6262ea0ae6ba6734b304 (diff) | |
download | llvm-75952873036fc9989fcf12c526d1a2deaeef596a.zip llvm-75952873036fc9989fcf12c526d1a2deaeef596a.tar.gz llvm-75952873036fc9989fcf12c526d1a2deaeef596a.tar.bz2 |
[lldb] Remove obsolete signBinary helper (#79656)
On Darwin, the Makefile already (ad-hoc) signs everything it builds.
There's also no need to use lldb_codesign for this.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 3abc713..d944b09 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -1543,14 +1543,6 @@ class Base(unittest2.TestCase): d = {"CXX_SOURCES": sources, "EXE": exe_name} self.build(dictionary=d) - def signBinary(self, binary_path): - if sys.platform.startswith("darwin"): - codesign_cmd = 'codesign --force --sign "%s" %s' % ( - lldbtest_config.codesign_identity, - binary_path, - ) - call(codesign_cmd, shell=True) - def findBuiltClang(self): """Tries to find and use Clang from the build directory as the compiler (instead of the system compiler).""" paths_to_try = [ |