llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-clang

Author: Krystian Stasiowski (sdkrystian)

<details>
<summary>Changes</summary>

On windows, running unit tests by directly invoking `llvm-lit.py` (e.g. 
`python3 llvm-lit.py clang/test/Unit`) will (at least on my system) create a 
folder named `%SystemDrive%` in the working directory. This seems to happen 
because `lit.cfg.py` in `clang/test/Unit` does not propagate the `SystemDrive` 
environment variable.


---
Full diff: https://github.com/llvm/llvm-project/pull/90478.diff


1 Files Affected:

- (modified) clang/test/Unit/lit.cfg.py (+2) 


``````````diff
diff --git a/clang/test/Unit/lit.cfg.py b/clang/test/Unit/lit.cfg.py
index 475069e630d74e..265e90968febb0 100644
--- a/clang/test/Unit/lit.cfg.py
+++ b/clang/test/Unit/lit.cfg.py
@@ -32,6 +32,8 @@
 
 if "HOME" in os.environ:
     config.environment["HOME"] = os.environ["HOME"]
+if "SystemDrive" in os.environ:
+    config.environment["SystemDrive"] = os.environ["SystemDrive"]
 
 # Propagate sanitizer options.
 for var in [

``````````

</details>


https://github.com/llvm/llvm-project/pull/90478
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to