aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/lldbtest.py
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2025-07-30 11:12:34 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2025-07-30 12:48:56 -0700
commita7ac43125eabb5845a2855bbf37fd4485831e860 (patch)
tree6b45af9bf97a5ac949c6f65c707f847af7b8f379 /lldb/packages/Python/lldbsuite/test/lldbtest.py
parent24f9482abddbc24135d8e0143eb1bac499645648 (diff)
downloadllvm-a7ac43125eabb5845a2855bbf37fd4485831e860.zip
llvm-a7ac43125eabb5845a2855bbf37fd4485831e860.tar.gz
llvm-a7ac43125eabb5845a2855bbf37fd4485831e860.tar.bz2
Re-land "[lldb] Pick the builder for the target platform (#151262)"
Pick the builder for the target platform, not the host platform. This is necessary when running the test suite remotely on a different platform. Unlike for Darwin, both Windows and Linux us the default builder, which is why this went unnoticed on the remote-linux bots.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lldbtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py
index a74961e..6eb021d 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1517,7 +1517,7 @@ class Base(unittest.TestCase):
testname = self.getBuildDirBasename()
module = builder_module()
- command = builder_module().getBuildCommand(
+ command = module.getBuildCommand(
debug_info,
architecture,
compiler,