From 5fa184dabd5e37860d849fdd4a1d1dcf54fcbcb4 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Wed, 10 May 2017 08:04:50 +0000 Subject: [PATCH] Attempt to speculatively unbreak Apple build bots git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@302627 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/libcxx/test/config.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/utils/libcxx/test/config.py b/utils/libcxx/test/config.py index fd6764737..532b3496d 100644 --- a/utils/libcxx/test/config.py +++ b/utils/libcxx/test/config.py @@ -1006,18 +1006,8 @@ class Configuration(object): sub.append(('%link', link_str)) sub.append(('%build', build_str)) # Configure exec prefix substitutions. - exec_env_str = '' - if not self.is_windows and len(self.exec_env) != 0: - exec_env_str = 'env ' - for k, v in self.exec_env.items(): - exec_env_str += ' %s=%s' % (k, v) # Configure run env substitution. - exec_str = exec_env_str - if self.lit_config.useValgrind: - exec_str = ' '.join(self.lit_config.valgrindArgs) + exec_env_str - sub.append(('%exec', exec_str)) - # Configure run shortcut - sub.append(('%run', exec_str + ' %t.exe')) + sub.append(('%run', '%t.exe')) # Configure not program substitutions not_py = os.path.join(self.libcxx_src_root, 'utils', 'not.py') not_str = '%s %s ' % (pipes.quote(sys.executable), pipes.quote(not_py))