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 <[email protected]> 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) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
