diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2015-08-31 07:10:05 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2015-08-31 07:10:05 +0000 |
commit | decd1ad9fcd5d47614f8c756e33dbbe81b2fa043 (patch) | |
tree | e23e4b0955ef9e226153f71a484f5cfa0de74471 /test | |
parent | 0a613536b19d90e12e87154345b083d8f2e28e80 (diff) |
Force the locale when executing ld gold
Summary:
If run with other locales (like French),
the decode operation might fail
Reviewers: rafael
Differential Revision: http://reviews.llvm.org/D12432
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@246421 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/lit.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 38a2ec20ec8..70a14a7648f 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -353,7 +353,7 @@ def have_ld_plugin_support(): if not os.path.exists(os.path.join(config.llvm_shlib_dir, 'LLVMgold.so')): return False - ld_cmd = subprocess.Popen([config.gold_executable, '--help'], stdout = subprocess.PIPE) + ld_cmd = subprocess.Popen([config.gold_executable, '--help'], stdout = subprocess.PIPE, env={'LANG': 'C'}) ld_out = ld_cmd.stdout.read().decode() ld_cmd.wait() @@ -374,7 +374,7 @@ def have_ld_plugin_support(): if 'elf32ppc' in emulations: config.available_features.add('ld_emu_elf32ppc') - ld_version = subprocess.Popen([config.gold_executable, '--version'], stdout = subprocess.PIPE) + ld_version = subprocess.Popen([config.gold_executable, '--version'], stdout = subprocess.PIPE, env={'LANG': 'C'}) if not 'GNU gold' in ld_version.stdout.read().decode(): return False ld_version.wait() |