[Lldb-commits] [lldb] [LLDB] Fix tests on Windows (PR #131600)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 18 01:04:29 PDT 2025


================
@@ -63,7 +63,7 @@ def execute(self, test, litConfig):
         try:
             out, err, exitCode = lit.util.executeCommand(
                 cmd,
-                env=test.config.environment,
+                env={**os.environ, **test.config.environment},
----------------
labath wrote:

Instead of this, you probably want to find the variable which controls this behavior, and add it to the list in test/API/lit.cfg.py

https://github.com/llvm/llvm-project/pull/131600


More information about the lldb-commits mailing list