diff options
author | Kendal Harland <3987220+kendalharland@users.noreply.github.com> | 2024-07-26 10:43:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-26 10:43:58 -0700 |
commit | 3e593b9b3b86ebf28e24c3a33791be49e0735af5 (patch) | |
tree | 84fb18f50fc580b1fc819d784f79d254eaba829e /lldb/packages/Python/lldbsuite/test/lldbtest.py | |
parent | 599a91a7df6b75f93b91507e0caedd8dd1996641 (diff) | |
download | llvm-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.py | 4 |
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. |