[libcxx-commits] [PATCH] D97452: [libcxx] [test] Pass some windows environment variables through to test processes
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Mar 2 12:41:54 PST 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG34ee3d91a80c: [libcxx] [test] Pass some windows environment variables through to test… (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D97452/new/
https://reviews.llvm.org/D97452
Files:
libcxx/utils/run.py
Index: libcxx/utils/run.py
===================================================================
--- libcxx/utils/run.py
+++ libcxx/utils/run.py
@@ -14,6 +14,8 @@
"""
import argparse
+import os
+import platform
import subprocess
import sys
@@ -37,6 +39,14 @@
# Extract environment variables into a dictionary
env = {k : v for (k, v) in map(lambda s: s.split('=', 1), args.env)}
+ if platform.system() == 'Windows':
+ # Pass some extra variables through on Windows:
+ # COMSPEC is needed for running subprocesses via std::system().
+ if 'COMSPEC' in os.environ:
+ env['COMSPEC'] = os.environ.get('COMSPEC')
+ # TEMP is needed for placing temp files in a sensible directory.
+ if 'TEMP' in os.environ:
+ env['TEMP'] = os.environ.get('TEMP')
# Run the command line with the given environment in the execution directory.
return subprocess.call(commandLine, cwd=args.execdir, env=env, shell=False)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D97452.327545.patch
Type: text/x-patch
Size: 984 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210302/e4db6057/attachment.bin>
More information about the libcxx-commits
mailing list