aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/lldbtest.py
diff options
context:
space:
mode:
authorKendal Harland <3987220+kendalharland@users.noreply.github.com>2024-07-26 10:43:58 -0700
committerGitHub <noreply@github.com>2024-07-26 10:43:58 -0700
commit3e593b9b3b86ebf28e24c3a33791be49e0735af5 (patch)
tree84fb18f50fc580b1fc819d784f79d254eaba829e /lldb/packages/Python/lldbsuite/test/lldbtest.py
parent599a91a7df6b75f93b91507e0caedd8dd1996641 (diff)
downloadllvm-3e593b9b3b86ebf28e24c3a33791be49e0735af5.zip
llvm-3e593b9b3b86ebf28e24c3a33791be49e0735af5.tar.gz
llvm-3e593b9b3b86ebf28e24c3a33791be49e0735af5.tar.bz2
[lldb] Remove python helper getCompilerBinary() (#100660)
This causes a number of tests be `UNRESOLVED` on Windows if `getCompiler()` has a space in the name, because `getCompilerBinary()` unconditionally splits on whitespace and returns the first result, which might just be`"C:\Program"` if using a compiler such as `clang-cl` `cl` from the absolute path to Visual studio's installation directory. Co-authored-by: kendal <kendal@thebrowser.company>
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lldbtest.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py
index 5e50b0c..f97c41d 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1379,10 +1379,6 @@ class Base(unittest.TestCase):
"""Returns the compiler in effect the test suite is running with."""
return lldbplatformutil.getCompiler()
- def getCompilerBinary(self):
- """Returns the compiler binary the test suite is running with."""
- return lldbplatformutil.getCompilerBinary()
-
def getCompilerVersion(self):
"""Returns a string that represents the compiler version.
Supports: llvm, clang.