aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/lldbtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lldbtest.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py
index 018f2a0..4931521 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1594,21 +1594,6 @@ class Base(unittest.TestCase):
print(str(method) + ":", result, file=sbuf)
return result
- def getLLDBLibraryEnvVal(self):
- """Returns the path that the OS-specific library search environment variable
- (self.dylibPath) should be set to in order for a program to find the LLDB
- library. If an environment variable named self.dylibPath is already set,
- the new path is appended to it and returned.
- """
- existing_library_path = (
- os.environ[self.dylibPath] if self.dylibPath in os.environ else None
- )
- if existing_library_path:
- return "%s:%s" % (existing_library_path, configuration.lldb_libs_dir)
- if sys.platform.startswith("darwin") and configuration.lldb_framework_path:
- return configuration.lldb_framework_path
- return configuration.lldb_libs_dir
-
def getLibcPlusPlusLibs(self):
if self.getPlatform() in ("freebsd", "linux", "netbsd", "openbsd"):
return ["libc++.so.1"]