[libc-commits] [libc] 848be2d - Add missed variable change from a refactor (#193684)

via libc-commits libc-commits at lists.llvm.org
Thu Apr 23 02:57:01 PDT 2026


Author: Jeff Bailey
Date: 2026-04-23T10:56:57+01:00
New Revision: 848be2d800db6baa01c227cfd563d85d7766c97f

URL: https://github.com/llvm/llvm-project/commit/848be2d800db6baa01c227cfd563d85d7766c97f
DIFF: https://github.com/llvm/llvm-project/commit/848be2d800db6baa01c227cfd563d85d7766c97f.diff

LOG: Add missed variable change from a refactor (#193684)

extra_args got renamed to test_args.

Added: 
    

Modified: 
    libc/utils/libctest/format.py

Removed: 
    


################################################################################
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