[libc-commits] [libc] Add missed variable change from a refactor (PR #193684)
Jeff Bailey via libc-commits
libc-commits at lists.llvm.org
Thu Apr 23 01:12:49 PDT 2026
https://github.com/kaladron created https://github.com/llvm/llvm-project/pull/193684
extra_args got renamed to test_args.
>From d996f616291807a881922290e75b4dbda4a29985 Mon Sep 17 00:00:00 2001
From: Jeff Bailey <jbailey at raspberryginger.com>
Date: Thu, 23 Apr 2026 09:11:44 +0100
Subject: [PATCH] Add missed variable change from a refactor
extra_args got renamed to test_args.
---
libc/utils/libctest/format.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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:
More information about the libc-commits
mailing list