diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-01-19 23:06:29 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-01-19 23:06:29 +0000 |
commit | c4672087915503a77872669b086b487ebda430af (patch) | |
tree | b1896a34a8efa5d0009b16cd31282cc48a4c2a11 | |
parent | ce10842036320b5cc1b4f7057662fb3ef2d1ea10 (diff) | |
download | bcm5719-llvm-c4672087915503a77872669b086b487ebda430af.tar.gz bcm5719-llvm-c4672087915503a77872669b086b487ebda430af.zip |
Fix enviroment variables when running shell scripts
llvm-svn: 258217
-rw-r--r-- | libcxx/test/libcxx/test/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/libcxx/test/config.py b/libcxx/test/libcxx/test/config.py index c1315950592..f8096ad15f8 100644 --- a/libcxx/test/libcxx/test/config.py +++ b/libcxx/test/libcxx/test/config.py @@ -615,7 +615,7 @@ class Configuration(object): for k, v in self.env.items(): exec_env_str += ' %s=%s' % (k, v) # Configure run env substitution. - exec_str = '' + 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)) |