[Lldb-commits] [lldb] 684f64c - [lldb] [test-suite] fix typo in variable in darwin builder (#169254)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 26 11:35:36 PST 2025
Author: n2h9
Date: 2025-11-26T11:35:32-08:00
New Revision: 684f64c0baca15c84e222c0f7c7455e8c505e575
URL: https://github.com/llvm/llvm-project/commit/684f64c0baca15c84e222c0f7c7455e8c505e575
DIFF: https://github.com/llvm/llvm-project/commit/684f64c0baca15c84e222c0f7c7455e8c505e575.diff
LOG: [lldb] [test-suite] fix typo in variable in darwin builder (#169254)
While taking a look at the code of lldb test-suite packages, I have
noticed that in `get_triple_str` in `darwin.py` env is added inside a
`components` list, which is probably supposed to be `component` (defined
on the line 61).
Signed-off-by: Nikita B <n2h9z4 at gmail.com>
Added:
Modified:
lldb/packages/Python/lldbsuite/test/builders/darwin.py
Removed:
################################################################################
diff --git a/lldb/packages/Python/lldbsuite/test/builders/darwin.py b/lldb/packages/Python/lldbsuite/test/builders/darwin.py
index a023bda3ad801..eebe0ef47fd85 100644
--- a/lldb/packages/Python/lldbsuite/test/builders/darwin.py
+++ b/lldb/packages/Python/lldbsuite/test/builders/darwin.py
@@ -60,7 +60,7 @@ def get_triple_str(arch, vendor, os, version, env):
component = [arch, vendor, os + version]
if env:
- components.append(env)
+ component.append(env)
return "-".join(component)
More information about the lldb-commits
mailing list