[libc-commits] [libc] Add missed variable change from a refactor (PR #193684)
via libc-commits
libc-commits at lists.llvm.org
Thu Apr 23 01:15:12 PDT 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Jeff Bailey (kaladron)
<details>
<summary>Changes</summary>
extra_args got renamed to test_args.
---
Full diff: https://github.com/llvm/llvm-project/pull/193684.diff
1 Files Affected:
- (modified) libc/utils/libctest/format.py (+1-1)
``````````diff
diff --git a/libc/utils/libctest/format.py b/libc/utils/libctest/format.py
index 37c7e16905be9..cc38b4f17aca9 100644
--- a/libc/utils/libctest/format.py
+++ b/libc/utils/libctest/format.py
@@ -194,7 +194,7 @@ def execute(self, test, litConfig):
)
else:
out, err, exit_code = lit.util.executeCommand(
- [test_path] + extra_args, cwd=exec_dir, env=env
+ [test_path] + test_args, cwd=exec_dir, env=env
)
if not exit_code:
``````````
</details>
https://github.com/llvm/llvm-project/pull/193684
More information about the libc-commits
mailing list