From d1eff0e81342c3d5bea214ef0c0c7e22f09c5081 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Wed, 10 May 2017 00:05:04 +0000 Subject: [PATCH] Attempt to unbreak Libc++ test configuration llvm-svn: 302604 --- libcxx/utils/libcxx/test/config.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index fad9e8af12fe..19b4ecdd9bd0 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -67,10 +67,7 @@ class Configuration(object): self.abi_library_root = None self.link_shared = self.get_lit_bool('enable_shared', default=True) self.debug_build = self.get_lit_bool('debug_build', default=False) - # FIXME: Some tests on Windows require we copy all of the environment - # variables into the runtime environment. Should we do this on other - # platforms too? - self.exec_env = {} if not self.is_windows else dict(os.environ) + self.exec_env = dict(os.environ) self.use_target = False self.use_system_cxx_lib = False self.use_clang_verify = False